码迷,mamicode.com
首页 > 其他好文 > 详细

OpenCV求取轮廓线

时间:2014-08-28 11:27:19      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:opencv   二值化   图像处理   轮廓线   

// Threshold.cpp : Defines the entry point for the console application.
//


#include "stdafx.h"


#include <cv.h>
#include <highgui.h>
int g_threshold = 100;
IplImage* img1= NULL;
IplImage* g_gray = NULL;
CvMemStorage* g_storage = NULL;
void on_trackbar(int)
{
	
	
	//将RGB转化为灰度图像
	cvCvtColor(img1, g_gray, CV_BGR2GRAY);
	
	//设定阈值为 g_threshold
    cvThreshold(g_gray, g_gray,  g_threshold, 255, CV_THRESH_BINARY);  

	
	//用来创建一个内存存储器,来统一管理各种动态对象的内存,比如说序列,这个函数返回一个新创建的内存存储器指针。
	//参数block_size对应内存器中每个内存块的大小,为0时内存块默认大小为64k(没设过大小,一直用的是默认0)。
	g_storage = cvCreateMemStorage(0);
	CvSeq* contours = 0;
	//默认mode为list,method设定轮廓近似的方法
	cvFindContours(g_gray, g_storage, &contours);
	cvZero(g_gray);
	
	if (contours)
	{
		//maxlevel为1,就画同层的轮廓
		cvDrawContours(g_gray, contours, cvScalarAll(255),cvScalarAll(255), 1);
	}
	
	//释放内存资源
	cvReleaseMemStorage(&g_storage);
	cvShowImage("Countours", g_gray);
	
	
	
	cvWaitKey(0);

}

void main()
{
	//以原始通道数读取图片1
	img1 = cvLoadImage("D://vc6.0//MSDev98//MyProjects//MachineVision//TestPic//PeppersRGB.bmp",CV_LOAD_IMAGE_UNCHANGED);
	g_gray = cvCreateImage(cvGetSize(img1), 8, 1);
	//命名窗口
	cvNamedWindow("Countours", CV_WINDOW_AUTOSIZE);
	cvCreateTrackbar("Threshold", "Countours", &g_threshold, 100, on_trackbar);
	on_trackbar(0);
	cvWaitKey(0);
	cvDestroyAllWindows();
	
}

bubuko.com,布布扣


本人对这一章学习兴趣不大,大致过了一下

OpenCV求取轮廓线

标签:opencv   二值化   图像处理   轮廓线   

原文地址:http://blog.csdn.net/lampqiu/article/details/38894759

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!