gpt4 book ai didi

c++ - 如何使用OpenCV的归一化相关性?

转载 作者:太空狗 更新时间:2023-10-29 19:46:29 27 4
gpt4 key购买 nike

如何使用 OpenCV 的归一化相关性?谁能提供代码示例?

我的问题:我有一个螺丝头图像,需要找到螺丝的中心。所以我正在考虑使用 OpenCV 关联,这是个好主意吗?

您可以在下面的链接下找到示例图片:

http://imageshack.us/photo/my-images/685/screw1.png/

请向我提供 OpenCV 中关联的代码示例。它是如何使用的?相关函数的输出是什么?关联函数会提供螺丝位置吗?

最佳答案

我认为您正在寻找 cv::matchTemplate 函数:

cv::Mat image;  // Your input image
cv::Mat templ; // Your template image of the screw
cv::Mat result; // Result correlation will be placed here

// Do template matching across whole image
cv::matchTemplate(image, templ, result, CV_TM_CCORR_NORMED);

// Find a best match:
double minVal, maxVal;
cv::Point minLoc, maxLoc;
cv::minMaxLoc(result, &minVal, &maxVal, &minLoc, &maxLoc);

// Regards to documentation the best match is in maxima location
// (http://opencv.willowgarage.com/documentation/cpp/object_detection.html)

// Move center of detected screw to the correct position:
cv::Point screwCenter = maxLoc + cv::Point(templ.cols/2, templ.rows/2);

关于c++ - 如何使用OpenCV的归一化相关性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11321316/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com