opencv 绘制轮廓

#include <iostream>   
#include <opencv2\opencv.hpp>
#include <math.h>
using namespace cv;
using namespace std;
/*原图片*/
Mat src = imread("E:\\3.jpg");
Mat dst;
/*阈值*/
double threshold_value = 130;
RNG rng;
void Demo_Contours() {
	vector<vector<Point>>contours;
	vector<Vec4i>hierarchy;
	/*Canny边缘检测*/
	Canny(src, dst, threshold_value, threshold_value * 2, 3, false);
	/*contours保存轮廓 hierarchy轮廓信息 RETR_TREE表示检测所有轮廓*/
	findContours(dst, contours, hierarchy, RETR_TREE, CHAIN_APPROX_SIMPLE, Point(0, 0));
	Mat drawimg = Mat::zeros(dst.size(), CV_8UC3);
	for (size_t i = 0; i < contours.size(); i++) {
		Scalar color = Scalar(255, 0, 0);
		drawContours(drawimg, contours, i, color, 2, LINE_8, hierarchy, 0, Point(0, 0));
	}
	imshow("output_img", drawimg);
}

int main()
{
	Demo_Contours();
	waitKey(0);
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值