数字图像处理与分析实验9 综合练习(一)_参考答案_第1页
数字图像处理与分析实验9 综合练习(一)_参考答案_第2页
数字图像处理与分析实验9 综合练习(一)_参考答案_第3页
数字图像处理与分析实验9 综合练习(一)_参考答案_第4页
数字图像处理与分析实验9 综合练习(一)_参考答案_第5页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、实验9 综合练习(一)实验目的:1. 对需要进行处理的图像分析,正确运用所学的知识,采用正确的步骤,对图像进行各类处理,以得到令人满意的图像效果。实验内容:1. 将bone_scan.jpg图像文件读入Matlab,按照以下步骤对其进行处理:a) 用带对角线的Laplacian对其处理,以增强边缘。W1=-1 -1 -1-1 8 -1-1 -1 -1b) 用imadd函数叠加原始图像,可以看出边界增强了,但噪声增强了,应想法降低。c) 对原图像进行Sobel滤波。(用fspecial生成)d) 并用imfilter对(c)的结果进行5×5邻域平均,以减少噪声。e) 用immultip

2、ly函数处理经(b)步骤和(d)步骤处理后的图像,噪声得以减少。f) 最后用imadjust函数做幂次灰度变换,以增强dynamic range。(多试几次,参考:取0.5)要求用imshow函数显示经每一步处理后的图像,比对效果。参考程序与处理结果=%Enhancing a image of whole body bone scan by combining various spatial% enhancement methods, the strategies is as following:% =% 1. Utilize the Laplacian to highlight fine d

3、etail% 2. Utilize the gradient to enhance prominent edges% 3. Combine Laplacian and gradient to get the detail-enhanced and noise-compressed image% 4. Increase the contrast of low gray levels by using a gray-level transformation.% =% The original image named 'Fig0306(a)(bone-scan).tif' is un

4、der the% directory: J:course teachingҽѧͼÏñ´¦ÀíʵÑéʾÀýͼÏñ% Copyright by Huang zhongchao, July 16, 2006clear all;close all;f = imread('J:course teachingÒ½Ñ

5、67;ͼÏñ´¦ÀíʵÑéʾÀýͼÏñFig0306(a)(bone-scan).tif');f1 = im2double(f);h1 = fspecial('sobel'); % or directly type h=-1 -2 -1;0 0 0;1 2 1;g1 = imfilter(f1,h1); subplot(121);imshow(f);title(&#

6、39;the original image');%b1 = mat2gray(g1);subplot(122);imshow(g1);title('the Sobel gradient'); h2 = fspecial('average',5) ; %procducing a averageing filterg2 = imfilter(g1,h2);figure(2);subplot(121);imshow(g2);title(' the smoothed gradient image'); h3 = -1 -1 -1; -1 8 -1

7、;-1 -1 -1; % Laplacian maskg3 =imfilter(f1,h3);%b2 = mat2gray(g3);subplot(122);imshow(g3);title('the Laplacian image');g4 = g3+f1; figure(3);subplot(121);imshow(g4)title('sharped image by adding laplacian filtered and original image'); g5 = g4.* g2;subplot(122);imshow(g5);title('the product of smoothed gradient and Laplacian image'); g6 = g5+f1;figure(4);subplot(121);imshow(g6);title('the sum of product and original image'); % constrast spreading by power-law transformation with r=0.5 and c=1;gamma = 0.5;c = 1;g7 = c.*g6.gamma

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论