This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我使用 mIntermediateMat.get(x,y) 获取像素颜色值。那是错误的。由于函数定义为 Mat.get(rows,cols) ,因此它将是 mIntermediateMat.get(y,x) 。看到区别了吗?我没有。我浪费了很多时间,又获得了一个愚蠢的奖项。
I fetched the pixel color value with mIntermediateMat.get(x,y). Thats just wrong. As function is defined as Mat.get(rows,cols) it would be mIntermediateMat.get(y,x). See the difference? I didn´t. Lots of lost time and another dumbness award for me.