我正在使用 g++ 和 opencv 2.4.6 编写一个 OpenCV 项目
我有一些这样的代码:
try
{
H = findHomography( obj, scene, CV_RANSAC );
}
catch (Exception &e)
{
if (showOutput)
cout<< "Error throwed when finding homography"<<endl;
errorCount++;
if (errorCount >=10)
{
errorCount = 0;
selected_temp = -99;
foundBB = false;
bb_x1 = 0;
bb_x2 = 0;
bb_y1 = 0;
bb_y2 = 0;
}
return -1;
}
当 findHomography 找不到东西时会抛出错误。错误信息包括:
OpenCV Error: Assertion failed (npoints >= 0 && points2.checkVector(2)
== npoints && points1.type() == points2.type()) in findHomography,
file /Users/dji-mini/Downloads/opencv- 2.4.6/modules/calib3d/src/fundam.cpp,
line 1074
OpenCV Error: Assertion failed (count >= 4) in cvFindHomography,
file /Users/dji-mini/Downloads/opencv-2.4.6/modules/calib3d/src/fundam.cpp, line 235
因为我知道消息会在什么条件下出现,所以我想抑制这些错误消息。但我不知道该怎么做。
在旧版本的 OpenCV 中,似乎有一个“cvSetErrMode”,根据其他文章,它在 OpenCV 2.X 中已被贬值。那么我可以使用什么函数来抑制 OpenCV 错误消息呢?