開發平台(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);