|
|
s*****n 发帖数: 10890 | 3 我是用dp1x。dp2跟rx1冲突了。我准备留rx1,所以想把dp2出了:)
或者rx1出了,赚一笔。。。。 |
|
g**a 发帖数: 2129 | 4 Sigma DP2S 14MP X3 FOVEON CMOS Digital Camera with 24.2mm f/2.8 and 2.5 inch
LCD |
|
n******d 发帖数: 691 | 5 我有dp1。最大的缺点是高光部分容易变成死白。所以我一般都减一挡曝光或者包围。
其余dp1的缺点dp2未必有:对焦慢,暗处无法合焦,闪灯功率太小,高感差。
以前没有别的革命机,这个是个好东西。现在来看,镜头和x3还是亮点。 |
|
S*********a 发帖数: 1640 | 6 DP2S的速度快很多,用得是和DP1x一档的处理芯片
有个DP1s,很喜欢,锐度不输全幅,就是干啥都死慢死慢,高感也不行。
最近一个月里Amazon的DP1s已经从近五百刀降到三百刀出头了。 |
|
n*********n 发帖数: 5605 | 7 我有DP2觉得照片不错 细节丰富
但是偏色 得用SPP调正
只是对焦很慢操控很蹩脚LCD太烂 |
|
v****n 发帖数: 7841 | 8 prefer $400 plus ZT if first time to dp2.
complete-kit-worldwide.html |
|
|
s*****n 发帖数: 10890 | 10 买了个二手dp2。问题如题。。。我有dp1x 觉得安静不少。所以不知道不正常~ 谢谢! |
|
s*****n 发帖数: 10890 | 11 free shipping up to $10. paypal gift.
condition: 8+/10. lens and body is clean. no scratch etc.
dp2 comes with grip and an extra battery - $200 |
|
x****y 发帖数: 1853 | 12 Is it the same as DP2 Merrill? |
|
b*****s 发帖数: 3390 | 13 Home / Sigma Outlet / Shop Cameras /
Dp2 Quattro Compact Digital Camera Refurbished |
|
f*****e 发帖数: 2992 | 14 来自主题: JobHunting版 - G 家面经 初始化就是,第一斜列只有一个元素A[0][0],只有一个组合,就是它和它自身。
所以dp2[0][0][0][0] = A[0][0]
第二斜列有两个元素(0,1),(1,0),所以有3对组合dp2(0,1,0,1),dp2(0,1,1,0),
dp2(1,0,1,0),这3对组合都可以用dp2[0][0][0][0]算。
dp2(0,1,0,1) = dp2(0,0,0,0) + A[0,1];
dp2(0,1,1,0) = dp2(0,0,0,0) + A[0,1] + A[1,0];
dp2(1,0,1,0) = dp2(0,0,0,0) + A[1,0];
如果45度斜列有n个元素,上面的计算就要算C_n^2 + n = n(n+1)/2次。 |
|
f*****e 发帖数: 2992 | 15 来自主题: JobHunting版 - G 家面经 初始化就是,第一斜列只有一个元素A[0][0],只有一个组合,就是它和它自身。
所以dp2[0][0][0][0] = A[0][0]
第二斜列有两个元素(0,1),(1,0),所以有3对组合dp2(0,1,0,1),dp2(0,1,1,0),
dp2(1,0,1,0),这3对组合都可以用dp2[0][0][0][0]算。
dp2(0,1,0,1) = dp2(0,0,0,0) + A[0,1];
dp2(0,1,1,0) = dp2(0,0,0,0) + A[0,1] + A[1,0];
dp2(1,0,1,0) = dp2(0,0,0,0) + A[1,0];
如果45度斜列有n个元素,上面的计算就要算C_n^2 + n = n(n+1)/2次。 |
|
w*********8 发帖数: 132 | 16 目前有一个K系列的career development award,该K award要求不少于75% effort
commitment,最近想投一个NIH Director's New Innovator (DP2) Award,但查了一下
有关要求:DP2需要投入不少于25% effort commitment,本人没有teaching task,可
以100% effort做research。我的问题是:
1)像我这种情况,K award期间可以申请DP2吗?
2)如果可以申请DP2,但申请期间中了一个其它的小grant,是不是DP2就不能申请了或
即使申请了也要作废?
3)如果可以申请DP2,且中了的话,K award和DP2加在一起的effort commitment是100
%,是不是意味着我不可以申请其它任何grant了; |
|
w*********8 发帖数: 132 | 17 目前有一个K系列的career development award,该K award要求不少于75% effort
commitment,最近想投一个NIH Director's New Innovator (DP2) Award,但查了一下
有关要求:DP2需要投入不少于25% effort commitment,本人没有teaching task,可
以100% effort做research。我的问题是:
1)像我这种情况,K award期间可以申请DP2吗?
2)如果可以申请DP2,但申请期间中了一个其它的小grant,是不是DP2就不能申请了或
即使申请了也要作废?
3)如果可以申请DP2,且中了的话,K award和DP2加在一起的effort commitment是100
%,是不是意味着我不可以申请其它任何grant了; |
|
a***e 发帖数: 413 | 18 再请问为啥下面这个程序就没有 Memory Limit Exceeded呢?我怎么觉得做法差不多,
只不过这个程序是从后往前做的?
vector wordBreak(string s, unordered_set &dict) {
int len = s.length();
vector dp(len + 1,false);
vector > dp2(len + 1,vector());
dp2[len].push_back("");
dp[len] = true;
for (int i = len - 1; i >= 0; i--) {
for (int j = i; j < len; j++) {
string str = s.substr(i,j - i + 1);
if (dict.... 阅读全帖 |
|
A******y 发帖数: 2041 | 19 First, your school grant office will know this by heart. Second, you do
know DP2 is reserved for the chosen ones i.e. your boss is a big bull, a NAS
fellow, and you personally have to have multiple NSCs. NIH will never
admit this like it will never admit that we have too many Ph.d.s. Third,
the efforts can be adjusted after you received the grant. The worse case
scenario will be for you to give up the K award. In DP2 there is no
training phase and it is very different than K. Personally I ... 阅读全帖 |
|
p*****2 发帖数: 21240 | 20 我刚刚练了练
public int maxProfit(int[] prices)
{
if(prices==null || prices.length==0)
return 0;
int len=prices.length;
int[] dp1=new int[len];
int[] dp2=new int[len];
int max=prices[len-1];
int min=prices[0];
for(int i=1;i
{
min=Math.min(min,prices[i]);
dp1[i]=Math.max(dp1[i-1],prices[i]-min);
}
for(int i=len-2;i>=0;i--)
{
max=Math.ma... 阅读全帖 |
|
p*****2 发帖数: 21240 | 21 我刚刚练了练
public int maxProfit(int[] prices)
{
if(prices==null || prices.length==0)
return 0;
int len=prices.length;
int[] dp1=new int[len];
int[] dp2=new int[len];
int max=prices[len-1];
int min=prices[0];
for(int i=1;i
{
min=Math.min(min,prices[i]);
dp1[i]=Math.max(dp1[i-1],prices[i]-min);
}
for(int i=len-2;i>=0;i--)
{
max=Math.ma... 阅读全帖 |
|
j********g 发帖数: 80 | 22 int twoRobs(vector > &MP){
int M = MP.size();
int N = MP[0].size();
int P_LEN = M + N -1;
vector > dp1 = vector >(N, vector(N, 0));
vector > dp2 = vector >(N, vector(N, 0));
dp1[0][0] = MP[0][0];
dp2[0][0] = MP[0][0];
for (int p = 2; p <= P_LEN; p++){//p is the length of the path
for (int x1 = 0; x1 < N; x1++){
for (int x2 = x1; x2 < N; x2++){
int y1 = p - 1 -... 阅读全帖 |
|
s*********s 发帖数: 140 | 23 感觉如果是按jordandong解释的定义的话,ans是不是应该是ans = dp1[i] + dp2[i+1]
? 因为按照题
目要求,不可能第i天既是第一次transaction的sell day,又是第二次transaction的
buy day。但是dp1[i] + dp2[i]好像包含了这种情况。
如果用ans = dp1[i] + dp2[i+1], 最后可以再来一次 ans = Math.max(dp1[n-1],
ans);
请指正。
before |
|
s*********s 发帖数: 140 | 24 感觉如果是按jordandong解释的定义的话,ans是不是应该是ans = dp1[i] + dp2[i+1]
? 因为按照题
目要求,不可能第i天既是第一次transaction的sell day,又是第二次transaction的
buy day。但是dp1[i] + dp2[i]好像包含了这种情况。
如果用ans = dp1[i] + dp2[i+1], 最后可以再来一次 ans = Math.max(dp1[n-1],
ans);
请指正。
before |
|
o*******k 发帖数: 562 | 25 评价非常高。
We should start with my recent review of the Sigma DP2 Merrill (DP2M). If
you haven't already done so may I suggest that you read it it now before
proceeding on this page? You should know that if anything my praise for that
camera is actually understated. The DP2M may have the highest per-pixel
usable picture resolution of any camera I have ever used and tested. No,
this is not Michael being hyperbolic. In recent weeks I, along with a couple
of other well known photographers who also boug... 阅读全帖 |
|
d******r 发帖数: 16947 | 26 尼玛我憋连鹅毛的DP2都要仿造出WS18,
C919根本看不上DP2,现在要仿造就是cfm
的leap, lol |
|
|
s*********t 发帖数: 1663 | 28 dp[i] = set up to position i
for i = 0 to n
for j = 0 to i
if dp1[i]-dp1[j] == dp2[i] - dp2[j]
then result.append()
O(n^2)
( |
|
j********g 发帖数: 80 | 29 I think dp1[i] keeps the best transaction whose selling happens on or before
day i, dp2[i] keeps the best transaction whose buying happens on or after
day i.
Then Max(dp1[i] + dp2[i]) returns the maximum sum of two transactions. One
transaction finishes on or before day i, another one finishes after day i. |
|
j********g 发帖数: 80 | 30 I think dp1[i] keeps the best transaction whose selling happens on or before
day i, dp2[i] keeps the best transaction whose buying happens on or after
day i.
Then Max(dp1[i] + dp2[i]) returns the maximum sum of two transactions. One
transaction finishes on or before day i, another one finishes after day i. |
|
|
n*********n 发帖数: 5605 | 32 用过 DP2,对焦是比较慢 大概半按快门 心里默数1,2,3的样子
更新firmware后能感觉到快了一些
喜欢X3,细节很丰富!
得有 阿Q精神 说服自己的
用DP2拍片然后放进SPP里面调整白平衡
比起胶片冲洗扫描总方便多了
值得玩玩 |
|
O*****a 发帖数: 427 | 33 我也很喜欢DP系,Foveon的片是三层的,等于信息量是同尺寸CMOS的三倍,APSC没比
Foveon大多少,锐度宽容度拼不过也是挺自然的事。
DP2s的反应速度和操控应该跟DP1x差不多,DP1s剧慢无比,和DP1,DP2是一代的。 |
|
n*********n 发帖数: 5605 | 34 既然作备机用途的话
首先的考虑得体积和重量
其次才是操控,取景器,电池等
==>
定焦的Sigma DP2, Leica X1比较合适
只是Sigma DP2每张得用SPP调好久
否则一般都有点偏绿
而Leica X1直出JPG就挺满意
其实个人觉得 如不是特地去拍照的话
带个X100足够了 也不用备机了
因为高感无敌 临时拍微距也凑活
胶片模拟色彩直出JPG蛮实用 |
|
|
c******f 发帖数: 2622 | 36 重点:
适马DP3 Merrill参数:
APS-C Foveon X3处理器;
50mm f/2.8镜头;
连拍7fps;
3" 92万画点TFT LCD屏幕;
外观尺寸121.5×66.7×80.6mm;
重量400g。
The Sigma DP3 Merrill is a boxy shooter with 50mm f/2.8 lens. It follows the
19mm DP1 Merrill and the 30mm DP2, which aside from their fixed focal
lengths are identical. This is a trinity of image quality awesome, and if it
were any other manufacturer, we'd join the haters in saying this is a waste.
You see, at its core, Sigma is a lens manufacturer and these lenses are
built perfectl... 阅读全帖 |
|
w*********g 发帖数: 30882 | 37 半潜船“海洋石油278”首航成功
来源: ccvip_usa 于 2012-06-08 07:58:21 [档案] [博客] [旧帖] [转至博客] [给我
悄悄话] 本文已被阅读:6次 字体:调大/调小/重置 | 加入书签 | 打印 | 所有跟帖
| 加跟贴 | 查看当前最热讨论主题
“海洋石油278”由海洋石油工程股份有限公司(下称海油工程公司)全额投资,招商
局重工(深圳)有限公司承建,中国船舶工业集团第708研究所担任设计。2010年3月31
日,海油工程公司与招商局重工(深圳)有限公司签订了建造合同,2010年7月19日,
“海洋石油278”开工建造。船东、船厂、708所和中国船级社密切配合,团结协作,历
时近23个半月,于2012年3月15日,以同类船舶最短的建造周期建成了这艘目前世界上
首艘带DP2动力定位系统的半潜式自航工程船。
3月24日下午16时,伴随嘹亮的汽笛声,海洋石油278缓缓离开招商重工码头,标志着“
海洋石油278”正式开始投入商业运营。
对于“海洋石油278”首次装载货物,相关各方非常重视。南通海事部门于4月24日提前
3天发布航行通告,南通引航站派资深... 阅读全帖 |
|
s********e 发帖数: 11693 | 38 大国重器第一集:瓮福公司沙特项目、湘电集团400吨自卸车、2兆瓦和5兆瓦风机制造
,振华重工。
大国重器第二集:沈阳鼓风机集团压缩机(包括叶轮和外壳制造)、大连光洋科技的数
控机床、徐工集团。
大国重器第三集:唐车集团、北一机床、沪东中华LNG。
大国重器第四集:山推(大马力推土机),陕鼓(轴流压缩机),沈阳机床厂
大国重器第五集:济南第二机床厂、上海汽轮机厂、阳泉煤矿发电厂热电余热回收热泵
、江苏双良集团(发电厂空冷岛)。
大国重器第六集:正泰集团(输变电和光伏)、无锡透平叶片、沈阳新松机器人自动化公
司。
好像就提到了这些,如果有的话再补充。
主要说说其中提到的船舶类企业
1上海振华重工http://cn.zpmc.com/showroom/index.html是一家很有名的企业它的主要产品有:
(1)起重机类产品:港口用大型集装箱机械和矿石煤炭等散货装卸机械。如遍布全世
界73个国家主要集装箱码头的岸桥、场桥,产量已占世界市场75%以上份额。散货装卸
设备如装卸船机、斗轮堆取料机、环保型链斗卸船机等也居本行业前列。
2013年3月29日,美国总统奥巴马在迈阿密港口发表演说,... 阅读全帖 |
|
m******n 发帖数: 15691 | 39 他们根本看不上, 我以前请个海关同学照顾一下,我说送个DC小意思一下, 结果人家连说
不用不用,已经有5DII和 DP2了,多了也是浪费 |
|
|
|
|
|
p*l 发帖数: 1359 | 44 申请多少都无所谓,等拿到了以后再考虑effort冲突的问题。
你如果拿到了DP2,但是没有25%的空余,可以把已有的grant effort 降一
点,nih规定effort折扣率75%以上是不需要他们批准的。K是carreer
grant,如果你有其他的大grant了,是可以降到75%以下的。你有了其他大
grant是K的成就,不可能因为这个不让你拿钱的。如果实在有个小grant
funding agency不通融的话,把小grant退回去就是了,没人逼你拿钱的。 |
|
p*l 发帖数: 1359 | 45 申请多少都无所谓,等拿到了以后再考虑effort冲突的问题。
你如果拿到了DP2,但是没有25%的空余,可以把已有的grant effort 降一
点,nih规定effort折扣率75%以上是不需要他们批准的。K是carreer
grant,如果你有其他的大grant了,是可以降到75%以下的。你有了其他大
grant是K的成就,不可能因为这个不让你拿钱的。如果实在有个小grant
funding agency不通融的话,把小grant退回去就是了,没人逼你拿钱的。 |
|
d******u 发帖数: 238 | 46 你说的对。很多都有postdoc fellowship,然后几年都在憋大文章,出来就该直接找工
作了。把大文章的idea去申K99不如直接就去申R01或者DP2。 |
|
b********h 发帖数: 119 | 47 你这个难道不可以扩展到二维吗?
dp[i][j] = set of chars from pos i to pos j
for len in [n, 1]
for i in [0, n-len)
if dp1[i][i+len] == dp2[i][i+len]
return len |
|
|
c******5 发帖数: 84 | 49 Hi,
I don't understand this part:
for(int i=0;i
ans=Math.max(ans, dp1[i]+dp2[i]);
Could you explain it a little more?
Thank you very much. |
|
c******5 发帖数: 84 | 50 Hi,
I don't understand this part:
for(int i=0;i
ans=Math.max(ans, dp1[i]+dp2[i]);
Could you explain it a little more?
Thank you very much. |
|