我正在尝试从 Mat 对象中获取像素。为了测试,我尝试在正方形上画一条对角线,并期望得到一条从左上角到右下角的完美线。
for (int i =0; i<500; i++){
//I just hard-coded the width (or height) to make the problem more obvious
(image2.at<int>(i, i)) = 0xffffff;
//Draw a white dot at pixels that have equal x and y position.
}
然而,结果并不像预期的那样。这是在彩色图片上绘制的对角线。 这是一张灰度图片。 有人看到问题了吗?