cvFindContours/findContours提取轮廓

这篇博客记录了在C/C++中使用OpenCV进行轮廓提取的过程,特别是通过cvFindContours函数。博主分享了如何根据面积阈值和宽高比例筛选轮廓的技巧,并提供了主函数的使用示例。
摘要由CSDN通过智能技术生成

opencv在提取轮廓时,C/C++有两种方式,有些许不同,结合查找的资料和补充,做个小笔记;

功能,提取满足一定面积阈值和宽高比例的轮廓;

主函数

static int getContoursByC(char* Imgname, double minarea = 100, double whRatio = 1);
static int getContoursByCplus(char* Imgname, double minarea=0, double whRatio=1);
int main()
{
	char* filename = new char[50];
	strcpy(filename, "../image/rl_4.jpg");
	getContoursByCplus(filename);
	delete[] filename;
	return 0;
}

API实现

cvFindContours形式

/*采用cvFindContours提取轮廓,并过滤掉小面积轮廓,最后将轮廓保存*/
static int getContoursByC(char* Imgname, double minarea, double whRatio)
{
	IplImage* src = cvLoadImage(Imgname, CV_LOAD_IMAGE_GRAYSCALE);
	if (!src)
	{
		printf("read data error!\n");
		return -1;
	}
	IplImage* dst = cvCreateImage(cvGetSize(src), 8, 3);
	
	//
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值