• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

OpenCV实现图像轮廓检测以及外接矩形

c语言 搞代码 4年前 (2022-01-06) 49次浏览 已收录 0个评论

来源gaodai#ma#com搞*!代#%^码$网

这篇文章主要为大家详细介绍了OpenCV实现图像轮廓检测以及外接矩形,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

前两篇博文分别介绍了图像的边缘检测和轮廓检测,本文接着介绍图像的轮廓检测和轮廓外接矩形:

一、代码部分:

 // extract_contours.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include using namespace cv; using namespace std; int _tmain(int argc, _TCHAR* argv[]) { //load src image string img_name="..\\image_norm\\71253.jpg-600"; Mat image=imread(img_name); imshow("src_image",image); cvWaitKey(0); //convert into gray image Mat gray(image.size(),CV_8U); cvtColor(image,gray,CV_BGR2GRAY); imshow("gray",gray); cvWaitKey(0); //convert into bin image threshold(gray,gray,128,255,THRESH_BINARY);//转换成2值图像 imshow("binary",gray); cvWaitKey(0); // Detecting contours vector<vector> contours; //定义轮廓集合 vector hierarchy; findContours(gray, contours, hierarchy, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_NONE);//CV_RETR_EXTERNAL只检测外部轮廓 // draw black contours on white image Mat result(gray.size(),CV_8U,Scalar(255)); int index = 0; for (; index >= 0; index = hierarchy[index][0]) //hierarchy[index][0]表示后一个轮廓 { Scalar color(rand() & 255, rand() & 255, rand() & 255); drawContours(result, contours, index, Scalar(0), 1, 8, hierarchy);//描绘字符的外轮廓 Rect rect = boundingRect(contours[index]);//检测外轮廓 rectangle(result, rect, Scalar(0,0,255), 3);//对外轮廓加矩形框 } imshow("Contours on white image",result); cvWaitKey(0); //draw contours on the original image Mat original=imread(img_name); int index_ori = 0; for (; index_ori >= 0; index_ori = hierarchy[index_ori][0]) { Scalar color(rand() & 255, rand() & 255, rand() & 255); //描绘字符的外轮廓 drawContours(original,contours,index_ori,Scalar(255),1,8, hierarchy); Rect rect = boundingRect(contours[index_ori]);//检测外轮廓 //对外轮廓加加矩形框 rectangle(original, rect, Scalar(0,0,255), 3); } //print contours info cout<<"The number of external contours:"<<contours.size()<<endl; imshow("Contours on original image",original); waitKey(0); return 0; }

二、程序运行效果图:

(1)源图像:

(2)灰度图像:

(3)二进制图像:

(4)轮廓在空白图像上显示:

(5)在原图像上画出图像的轮廓以及外接矩形:

至此,图像的轮廓检测以及外接矩形已经实现,欢迎高人指正。

以上就是OpenCV实现图像轮廓检测以及外接矩形的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:OpenCV实现图像轮廓检测以及外接矩形

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址