1
嗨,我嘗試使用fitLine,但它總是崩潰。 我已經嘗試修改輸入數據(cv::Mat
,std::vector<cv::Pointd>
)和輸出數據(cv::Vect4d
,std::vector<cv::Pointd>(2)
,std::vector<double>(4)
)格式。opencv fitLine總是崩潰
這裏是我的代碼:
std::vector<cv::Point2d> points;
// [...] // push_back some (26) points
std::vector<double> line(4,0);
cv::fitLine(points,line,CV_DIST_L2,0,0.01,0.01);
現在它崩潰。 Iam使用winxp VS2010與opencv 2.41構建 我沒有調用堆棧,崩潰似乎發生在kernel32.dll中xstring
我的失敗在哪裏?
PS: 我在opencv Q &論壇上發佈了一個問題,但在查看問題歷史記錄後,iam對於快速解決方案並不是很有信心。