资源描述:
《数字图像分割器的研究与设计【毕业论文】》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、本科毕业设计(20届)数字图像分割器的研究与设计摘要数字图像分割是一种重要的数字图像处理技术,它的目的就是将图像划分为不同的区域,提取感兴趣区域。数字图像分割算法有很多,主要分为基于边缘检测、基于阈值分割和基于区域分割和基于聚类算法图像分割等等。由于近几年人们对彩色图像的关注度远远超过了灰度图像,所以课题主要研究了如何分割彩色图像。但是彩色图像分割算法目前还是建立在灰度图像的基础上,所以在做彩色图像分割之前,首先将彩色图像转化为灰度图像,然后再根据灰度图像的分割算法对图像进行分割。在设计部分通过软件MATLAB的调试,比较不同分割算法调试出来的结果
2、,总结这些算法的优缺点以及使用范围,最后根据任务书上的要求,采用以边缘检测及直方图为基础的聚类分割方法来提取图像中的特定区域,将分割效果与原预期效果进行对比。并通过改变其中的参数K值,使得图像的分割效果越来越接近原图像的灰度图像,但是这个参数不是无限增大的,它有一定的参数值,通过实验得出这个K值的上限值。关键词:数字图像处理;MATLAB;数字图像分割;聚类算法分割AbstractDigitalImagesegmentationisanimportantdigitalimageprocessingtechnology,itspurposeistoi
3、mageintodifferentregions,regionofinterestextraction.Therearemanydigitalimagesegmentationalgorithm,consistsofSegmentationbasedonedgedetection,threshold-basedsegmentationandregion-basedsegmentationandimagesegmentationbasedonclusteringalgorithmandsoon.Recentyearsduetoconcernsthat
4、peopleofcolorimagefarmorethanthegrayimage,therefore,themainresearchtopicishowtobreakupcolorimage.Butthecolorimagesegmentationalgorithmisstillthebasisofgrayimage,sobeforedoingthecolorimagesegmentation,first,thecolorimageintograyimage,thenimagesegmentationbasedongray-scaleimages
5、egmentationalgorithm.Inthedesignpart,throughtheMATLABsoftwaredebugging,comparedifferentdebugtheresultofthesegmentationalgorithm,comparedifferentdebugtheresultofthesegmentationalgorithm,summarizetheadvantagesanddisadvantagesofthesealgorithmsandtheuseofrange.Sointheend,according
6、totherequirementsofthemissionstatement,usedtheclusteringimagesegmentationwhichisbasedoninedgedetectionandhistogramtoextractspecificareas,comparedthesegmentationresultswiththeoriginalexpectedresults.AndbychangingthevalueofoneoftheparametersK,makesimagesegmentationimageclosertot
7、heoriginalgrayimage,however,increasingthisparameterisnotinfinite,ithascertainparameters,byexperimentsreachedtheupperlimitoftheKvalue.KeyWords:digitalimageprocessing;MATLAB;digitalimageSegmentation;Clusteringsegmentation目录1引言11.1课题研究意义及现状11.2主要研究内容21.3论文组织结构22数字图像处理基础42.1数字图像处理
8、的基本内容42.1.1数字图像处理的基本概念42.1.2数字图像处理的常用算法52.1.3数字图像处理的常用方法62.2数