MATLAB draws colorful coin graphics

clear all; close all;
I=imread('coins.png');
J=imnoise(I, 'salt & pepper', 0.02);
h=ones(3,3)/5;
h(1,1)=0;   h(1,3)=0;
h(3,1)=0;   h(1,3)=0;
K=imfilter(J, h);
figure;
subplot(131);
imshow(I);
subplot(132);
imshow(J);
subplot(133);
imshow(K);
colormap parula

insert image description here

colormap turbo

insert image description here

colormap jet

insert image description here

colormap hsv

insert image description here

colormap hot

insert image description here

colormap cool

insert image description here

colormap spring

insert image description here

colormap summer

insert image description here

colormap autumn

insert image description here

colormap winter

insert image description here

colormap gray

insert image description here

colormap bone

insert image description here

colormap copper

insert image description here

colormap pink

insert image description here

colormap colorcube

insert image description here

colormap default

insert image description here
Development tools: MATLAB 2022b
WeChat Alt+A screenshot tool

Guess you like

Origin blog.csdn.net/m0_38127487/article/details/131861635