【无标题】

MATLAB第二章 灰度变换与空间滤波

一,使用函数imadjust

clc
clear
f=imread('乳房.png');
 
%生成负片
g1=imadjust(f,[0,1],[1,0]);
 
%将0.5到0.75之间的灰度扩展到0-1之间
g2=imadjust(f,[0.5,0.75],[0,1]);
 
%gamma=2时
g3=imadjust(f,[],[],2);

g4=imadjust(f,stretchlim(f),[1 0]);

%绘图
subplot(331),imshow(f) 
title('原片')
subplot(332),imshow(g1)
title('负片')
subplot(333),imshow(g2)
title('0.5-0.75')
subplot(334),imshow(g3)
title('gamma=2')
subplot(335),imshow(g4)
title('增强负片')


运行结果
【无标题】_第1张图片
二,利用对数变换减小动态范围

h=imread('光点.png');
g5=im2uint8(mat2gray(log(1+double(h))));
subplot(1,2,1),imshow(h)
subplot(1,2,2),imshow(g5)

运行结果【无标题】_第2张图片

三,函数intrans的说明

j=imread('骨骼.png');
g6=intrans(j,'stretch',mean2(tofloat(j)),0.9);
subplot(1,2,1),imshow(j)
subplot(1,2,2),imshow(g6)

【无标题】_第3张图片

你可能感兴趣的:(matlab,图像处理,开发语言)