开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
VC++
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
OpenCV
问题(Question):
我要计算一块黑色区域的面积(已经二值化过),但是我跑到最后一段的时候却会发生错误
,请各位高手帮忙看看哪里错误,感谢
程式码(Code):(请善用置底文网页, 记得排版)
using namespace cv;
using namespace std;
double area;
Mat image=imread("binary1.Jpg",0);
vector<vector <cv::Point>> contours;
findContours(image,contours,CV_RETR_EXTERNAL,CV_CHAIN_APPROX_NONE);
Mat result(image.size(),CV_8U,Scalar(255));
drawContours(result,contours,-1,Scalar(0),2);
imshow("resultImage",result);
area=contourArea(contours);