digital image processing projects 数字图像处理 冈萨雷斯 第三章所有程序和报告.docx

digital image processing projects 数字图像处理 冈萨雷斯 第三章所有程序和报告.docx

  1. 1、本文档共23页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
digital image processing projects 数字图像处理 冈萨雷斯 第三章所有程序和报告

Digital Image ProcessingProject chapter: Chapter 3Project number:Proj03-01 ~ Proj03-06Students name: Students number:Class:ContentsImage Enhancement Using Intensity Transformations1Histogram Equalization7Arithmetic Operations10Spatial Filtering14Enhancement Using the Laplacian17Unsharp Masking20Image Enhancement Using Intensity TransformationsExp. 5,PROJECT 03-01ObjectiveTo manipulate a technique of image enhancementbyintensitytransformation or gray level transformation.RequirementsThe focus of this project is to experiment with intensity transformations toenhance an image. Download Fig. 3.8(a) and enhance it using:(a) The log transformation of Eq. (3.2-2): s=clog(1+r);(b) A power-law transformation of the form shown in Eq. (3.2-3): s=crγ.Figure 9 Fig 3.05(a)Figure 10Fig. 3.8(a)Technical discussion【1】I = mat2gray(A)sets the values of amin and amax to the minimum and maximum values in A.【2】I2 = im2uint8(I1)converts the grayscale image I1 to uint8, rescaling the data if necessary.Program listings【1】log transformationI=imread(Fig3.05(a).jpg);subplot(121);imshow(I);title(original);I1=im2uint8(mat2gray(log(1+double(I))));subplot(122);imshow(I1);title(log transformation);【2】power-law transformationI=imread(Fig3.08(a).jpg);subplot(221);imshow(I);title(original);J=double(I);I1=im2uint8(mat2gray(J.^0.6));subplot(222);imshow(I1);title(power-law:\gamma=0.6);I2=im2uint8(mat2gray(J.^0.4));subplot(223);imshow(I2);title(power-law:\gamma=0.4);I3=im2uint8(mat2gray(J.^0.3));subplot(224);imshow(I3);title(power-law:\gamma=0.3);Discussion of resultsFigure 11 results of log transformationFigure 12 results of power-law transformationAnalysisLog transformation can diminish dynamic range of the image.Power-law transformation can change the contrast of the image.Histogram EqualizationExp. 6,PROJECT 03-02 [Multiple Uses]ObjectiveTo manipulate a technique of image enhancement by histogramequalization.Requirements(a) Write a computer program for computing the histogram of animage.(b)

文档评论(0)

zhuwenmeijiale + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:7065136142000003

1亿VIP精品文档

相关文档