资源简介
基于MATLAB的图像处理程序
部分程序
%图像灰度级修正
A=imread('J:\图片\e1.bmp');
%灰度线性变换
c=imnoise(a,'salt & pepper‘)
figure;
imshow(c);
B=imadjust(A,[],[],0.3);%灰度范围从[0 128]映射到[0 255],亮度增大,细节更明显
figure;
subplot(2,2,1);
imshow(A);
title('输入图像');
subplot(2,2,2);
imhist(A);%直方图显示
title('输入图像直方图');
subplot(2,2,3);
imshow(B);
title('输出图像');
代码片段和文件信息
- 上一篇:利用肤色分割进行人脸检测
- 下一篇:基于MATLAB的图像复原
评论
共有 条评论