本文转载http://blog.csdn.net/qq_18343569/article/details/47999257

1、approxPolyDP函数

函数的作用:

对图像轮廓点进行多边形拟合

2、函数的调用形式

C++: void approxPolyDP(InputArray curve, OutputArray approxCurve, double epsilon, bool closed)

参数详解;

InputArray curve:一般是由图像的轮廓点组成的点集

OutputArray approxCurve:表示输出的多边形点集

double epsilon:主要表示输出的精度,就是另个轮廓点之间最大距离数,5,6,7,,8,,,,,

bool closed:表示输出的多边形是否封闭

3、OPENCV代码

 #include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>
#include <stdlib.h> using namespace cv;
using namespace std; Mat src; Mat src_gray;
int thresh = ;
int max_thresh = ;
RNG rng(); /// Function header
void thresh_callback(int, void*); /** @function main */
int main(int argc, char** argv)
{
/// 加载源图像
src = imread("D:6.jpg", ); /// 转成灰度图并进行模糊降噪
cvtColor(src, src_gray, CV_BGR2GRAY);
blur(src_gray, src_gray, Size(, )); /// 创建窗体
char* source_window = "Source";
namedWindow(source_window, CV_WINDOW_AUTOSIZE);
imshow(source_window, src); createTrackbar(" Threshold:", "Source", &thresh, max_thresh, thresh_callback);
thresh_callback(, ); waitKey();
return();
} /** @function thresh_callback */
void thresh_callback(int, void*)
{
Mat src_copy = src.clone();
Mat threshold_output;
vector<vector<Point> > contours;
vector<Vec4i> hierarchy; /// 对图像进行二值化
threshold(src_gray, threshold_output, thresh, , THRESH_BINARY); /// 寻找轮廓
findContours(threshold_output, contours, hierarchy, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE, Point(, ));
/*Mat drawing = Mat::zeros(threshold_output.size(), CV_8UC3);*/ /* 对每个轮廓计算其凸包*/
vector<vector<Point> >poly(contours.size());
for (int i = ; i < contours.size(); i++)
{
approxPolyDP(Mat(contours[i]), poly[i], ,true);
} /* 绘出轮廓及其凸包*/
Mat drawing = Mat::zeros(threshold_output.size(), CV_8UC3);
for (int i = ; i< contours.size(); i++)
{
Scalar color = Scalar(rng.uniform(, ), rng.uniform(, ), rng.uniform(, ));
drawContours(drawing, contours, i, color, , , vector<Vec4i>(), , Point());
drawContours(drawing, poly, i, color, , , vector<Vec4i>(), , Point());
}
/*vector<Point> poly;
approxPolyDP(Mat(contours[3]), poly, 5, false);
vector<Point>::const_iterator itp = poly.begin();
while (itp != (poly.end() - 2))
{
line(drawing, *itp, *(itp + 1), Scalar(255), 2);
++itp;
}
line(drawing, *itp, *(poly.begin()), Scalar(255), 2);*/
/// 把结果显示在窗体
namedWindow("Hull demo", CV_WINDOW_AUTOSIZE);
imshow("Hull demo", drawing);
}

最新文章

  1. 当编译CCBReader时出现 “ CCBAnimationManager.m Use of undeclared identifier &#39;other‘ ” 解决方法
  2. AloneJs.albumBox() —— 相册对话框
  3. 发现EF中字段错误
  4. 51nod1757 大灾变
  5. Android工具包
  6. @using (Html.BeginForm())收集
  7. Windows多线程同步系列之一-----互斥对象
  8. unity3D 锁屏再开程序崩溃
  9. Order笔记-数据库创建
  10. 如何安装Pycharm官方统计代码行插件
  11. BZOJ1001 洛谷4001 [BJOI2006]狼抓兔子 题解
  12. linux:提取匹配含有小数点的数字(grep函数)
  13. .NET代码执行效率优化
  14. subarray sum
  15. TP5数据库操作方法
  16. 访问spring接口一定要用.do么?
  17. 给UIScrollView添加category实现UIScrollView的轮播效果
  18. Bash 脚本 getopts为什么最后一个參数取不到
  19. 用jquery-table2excel,进行导出excel
  20. python 使用pyinstaller,pywin32打包.py成.exe应用程序

热门文章

  1. 黄聪:wordpress获取hook所有function
  2. 云中树莓派(4):利用声音传感器控制Led灯
  3. jQuery绑定和解绑点击事件及重复绑定解决办法
  4. 得到body相对定位的插件
  5. centos7安装Jenkins及其卸载
  6. Jmeter(三十一)Jmeter Question 之 乱码解读
  7. Css学习(4)
  8. SCCM2012 R2实战系列之十一:解决OSD分发Windows7 系统盘盘符为’D’问题
  9. linux系统添加指定uid和gid的用户和组
  10. CNN卷积层:ReLU函数