摘要:
关键词: 实验1 : >> f=imread('fouriertest.jpg'); >> imshow(f,'notruesize') Warning: IMSHOW(...,'notruesize') is an obsolete syntax. Use IMSHOW(...,'InitialMagnification','fit') instead. > In... 阅读全文
摘要:
1 彩色增强 rgb=imread('sea_desert.bmp'); subplot(221),imshow(rgb) title('原始真彩色图像') subplot(222),imshow(rgb(:,:,1)) title('真彩色红分量') subplot(223),imshow(rgb(:,:,2)) title('真彩色绿色分量') subplot(224),imshow(rgb... 阅读全文