博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【计算机视觉】OpenCV篇(9) - 轮廓(寻找/绘制轮廓)
阅读量:5842 次
发布时间:2019-06-18

本文共 2352 字,大约阅读时间需要 7 分钟。

什么是轮廓?

轮廓是一系列相连的点组成的曲线,代表了物体的基本外形。

轮廓与边缘好像挺像的?

是的,确实挺像,那么区别是什么呢?简而言之,轮廓是连续的,而边缘并不全都连续(见下图示例)。其实边缘主要是作为图像的特征使用,比如可以用边缘特征可以区分脸和手,而轮廓主要用来分析物体的形态,比如物体的周长和面积等,可以说边缘包括轮廓。

边缘和轮廓的区别(图片来源:)

寻找轮廓的操作一般用于二值化图,所以通常会使用阈值分割或Canny边缘检测先得到二值图。

【注:寻找轮廓是针对白色物体的,一定要保证物体是白色,而背景是黑色,不然很多人在寻找轮廓时会找到图片最外面的一个框】

 

OpenCV4.1.0 C++ Sample Code:

/** * @function findContours_Demo.cpp * @brief Demo code to find contours in an image * @author OpenCV team */#include "opencv2/imgcodecs.hpp"#include "opencv2/highgui.hpp"#include "opencv2/imgproc.hpp"#include 
using namespace cv;using namespace std;Mat src_gray;int thresh = 100;RNG rng(12345);/// Function headervoid thresh_callback(int, void* );/** * @function main */int main( int argc, char** argv ){ /// Load source image CommandLineParser parser( argc, argv, "{@input | ../data/HappyFish.jpg | input image}" ); Mat src = imread( parser.get
( "@input" ) ); if( src.empty() ) { cout << "Could not open or find the image!\n" << endl; cout << "Usage: " << argv[0] << "
" << endl; return -1; } /// Convert image to gray and blur it cvtColor( src, src_gray, COLOR_BGR2GRAY ); blur( src_gray, src_gray, Size(3,3) ); /// Create Window const char* source_window = "Source"; namedWindow( source_window ); imshow( source_window, src ); const int max_thresh = 255; createTrackbar( "Canny thresh:", source_window, &thresh, max_thresh, thresh_callback ); thresh_callback( 0, 0 ); waitKey(); return 0;}/** * @function thresh_callback */void thresh_callback(int, void* ){ /// Detect edges using Canny Mat canny_output; Canny( src_gray, canny_output, thresh, thresh*2 ); /// Find contours vector
> contours; vector
hierarchy; findContours( canny_output, contours, hierarchy, RETR_TREE, CHAIN_APPROX_SIMPLE ); /// Draw contours Mat drawing = Mat::zeros( canny_output.size(), CV_8UC3 ); for( size_t i = 0; i< contours.size(); i++ ) { Scalar color = Scalar( rng.uniform(0, 256), rng.uniform(0,256), rng.uniform(0,256) ); drawContours( drawing, contours, (int)i, color, 2, LINE_8, hierarchy, 0 ); } /// Show in a window imshow( "Contours", drawing );}

Result:

  

转载于:https://www.cnblogs.com/carsonzhu/p/10863870.html

你可能感兴趣的文章
Go语言与数据库开发:01-09
查看>>
Python连续攀升,其他的脚本语言去哪了?
查看>>
socket跟TCP/IP 的关系,单台服务器上的并发TCP连接数可以有多少
查看>>
中文分词之HMM模型详解
查看>>
山东青岛市南区:创建"物联网" 信息化管理涉案财物
查看>>
《爆发》作者:大数据领域将有新赢家
查看>>
AI x 量化:华尔街老司机解密智能投资正确姿势
查看>>
IT史上十大收购案
查看>>
数据切分——Atlas介绍
查看>>
云计算时代,互联网金融背后的想象空间
查看>>
游戏引擎cocos2d-android使用大全
查看>>
oracle job 定时执行参数
查看>>
虚拟现实大潮渐近:Oculus VR、EA和Avegant等多家公司...
查看>>
内存中压缩图片
查看>>
Android命令Monkey压力测试,详解
查看>>
log4j2 mybatis 显示 sql 和 结果集
查看>>
Linux——JDK的部署
查看>>
设计模式-Factory Method Pattern
查看>>
VS2010下Boost1.55.0配置
查看>>
负载均衡(LB)集群 dr
查看>>