我正在编写一个 iPhone 应用程序来使用 OpenCV 来检测 iPhone 相机中某种预定义标记(只有一个)的 2D 位置。最好的标记类型是什么?圆圈?正方形?颜色?检测该标记的最快方法是什么?此外,检测算法需要接近实时运行。
我已经尝试过 openCV 的圆检测,但我得到了 1 fps(640x480 图像):
Mat gray;
vector<Vec3f> circles;
CGPoint findLargestCircle(IplImage *image) {
Mat img(image);
cvtColor(img, gray, CV_BGR2GRAY);
// smooth it, otherwise a lot of false circles may be detected
GaussianBlur( gray, gray, cv::Size(9, 9), 2, 2 );
HoughCircles(gray, circles, CV_HOUGH_GRADIENT,
2, gray.rows/4, 200, 100 );
double radius=-1;
size_t ind;
for( size_t i = 0; i < circles.size(); i++ ) {
if(circles[i][2] > radius) {
radius = circles[i][2];
ind = i;
}
}
if(ind == -1) {
return CGPointMake(0, 0);
}else {
return CGPointMake(circles[ind][0], circles[ind][1]);
}
}
任何建议或代码都会有所帮助。
提前致谢。