欢迎来到天天文库
浏览记录
ID:30971934
大小:212.00 KB
页数:24页
时间:2019-01-04
《《图像处理》》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、《图像处理》实验指导书10学时指导教师:付晓薇23实验报告要求1、做好实验相关预习工作,了解实验的目的与内容。每次实验报告中,首先写清实验目的。然后,写出实验内容中的题目、程序清单(加上必要注释)、程序运行结果(可将图像处理效果图附在实验报告中;对综合应用性较高的题目,要求在给出代码前,绘制算法设计的流程图)。最后,给出100-50字的实验体会或总结。要求必须写在实验报告中,图片效果可以剪贴到报告册上。每次实验报告首页页眉写上实验时间、指导老师姓名。2、实验报告要求手写在实验报告册中,请勿打印。23实验一 Matlab图像显示与
2、图像运算(2学时)【实验目的】1、熟悉Matlab的编程环境及其基本用法;2、掌握MATLAB语言中图像数据与信息的读取方法;了解m文件的编写与调试方法;3、熟悉图像点运算和代数运算的实现方法;4、掌握Matlab图像几何变换的基本函数;5、了解图像几何运算的简单应用;【实验内容】1、Introduction InthefollowingwegiveashortoverviewonaverylimitedsetofbasicimageprocessingfunctionsprovidedbyMATLAB.Thefuncti
3、ondescriptionsonlycoverthebasicusage,moredetailedinformationcanbefoundinthemanualpagesbytypingdocfunctionNameattheMATLABcommandline.MATLABprovideswithit’simageprocessingtoolboxmanypowerfulandveryefficientimageprocessingfunctions(seefunctionlistoftheimageprocessingtoo
4、lbox).Withthisitisverysimpletoimplementcompleximageprocessingapplications,especiallyforfastprototyping.Onthebackside,alotofunderstandinghowimageprocessingworksishiddenwithinblackboxesandtempstomakethingsmorecomplicatethantheyreallyare.2、ImagerepresentationInMATLABabi
5、naryandgray-scaleimageisrepresentedbyone2-dimensionalarray,whereasacolorimagearerepresentedbya3-dimensionalarray(one2-dimensionalarrayforeachofthecolorplanesorcolorchannelsred,greenandblue):Theoriginoftheimageisintheupperleftandthesizeoftheimageisdefinedbytheparamete
6、rwidth(numberofcolumnsofthearray)andheight(numberofrowsofthearray).Notethatthex-andy-coordinatesarechosensuchthatthez-axispointstothefront.Asinglepointwithintheimageiscalledpixel.Agray-scaleorbinarypixelconsistsofonedatavalue,acolorpixelconsistsof3datavalues(eachforo
7、neofthecolorchannels).Themostcommondatatypesoftheindividualpixelsare:23uint8unsignedinteger:datarange0..255doubledoubleprecisionfloat:datarange0.0...1.0Binaryimageshavepixelvaluesof0’sand1’sresp.0.0and1.0.Inthecaseofuint8images,thelogicalflagmustbeturnedon,toberecogn
8、izedasbinaryimage(fordetailsseebelow).BecarefulwithdatatypesinMATLAB.Manyofthepredefinedfunctions,e.g.imadd(img1,img2)whichaddstwoi
此文档下载收益归作者所有