16
嘗試將二進制圖像」上運行findContoursfindContours錯誤 '只支持8uC1圖像'
Mat conv(image.size(), CV_8U);
image.convertTo(conv, CV_8U);
vector<vector<cv::Point> > contours;
findContours(conv, contours, CV_RETR_LIST, CV_CHAIN_APPROX_SIMPLE);
thorws錯誤:
OpenCV Error: Unsupported format or combination of formats ([Start]FindContours support only 8uC1 images) in cvStartFindContours,
任何想法 感謝
有沒有一種方法,我可以減少它爲單色?我已經有一個黑色和白色的圖像,這是從另一個程序canny過濾 – 0xSina
@ 0xSina:是的,只是添加它:) – Vlad
很酷,謝謝! – 0xSina