摘要: 1.图像反转MATLAB 程序实现如下:I=imread('xian.bmp');J=double(I);J=-J+(256-1); %图像反转线性变换H=uint8(J);subplot(1,2,1),imshow(I);subplot(1,2,2),imshow(H);2.灰度线性变换MATLA... 阅读全文
posted @ 2015-12-31 00:02 玥茹苟 阅读(449) 评论(0) 推荐(0) 编辑