图像反转
I=imread('nickyboom.jpg');
J=double(I);J=-J+(256-1); %图像反转线性变换
H=uint8(J);
subplot(1,2,1),imshow(I);
subplot(1,2,2),imshow(H);
直方图均衡化
MATLAB 程序实现如下:
I=imread('nickyboom.jpg);
I=rgb2gray(I);
figure;
subplot(2,2,1);
imshow(I);
subplot(2,2,2);
imhist(I);
I1=histeq(I);
figure;
subplot(2,2,1);
imshow(I1);
subplot(2,2,2);
imhist(I1);
均值滤波器
I=imread('nickyboom.jpg');
subplot(231)
imshow(I)