从OpenCV文档中,cv :: findContours中的源图像被获取为const,但我的应用程序正在发生一些奇怪的事情.我正在使用cv :: inRange函数来获取特定颜色的阈值图像,然后,使用cv :: moments,我可以在阈值图像中获得白色像素的中心,这是正常的.
另外,我想实现用于寻找最大轮廓和在该轮廓中定位中心力矩的代码.在代码中添加了cv :: findContours后,我在输出中发现了奇怪的行为,之后我想使用以下代码检查源图像的内容:
cv::Mat contourImage; threshedImage.copyTo(contourImage); // threshedImage is the output from inRange cv::findContours(threshedImage,contours,CV_RETR_LIST,CV_CHAIN_APPROX_NONE,cv::Point(0,0)); cv::Mat temp; cv::absdiff(threshedImage,contourOutput,temp); cv::namedWindow("absdiff"); cv::imshow("absdiff",temp);
在此之后,输出显示threshedImage和contourImage之间存在差异.这怎么可能?有没有人与cv :: findContours有类似的结果?