代码搜索:图像加密
找到约 10,000 项符合「图像加密」的源代码
代码结果 10,000
www.eeworm.com/read/163481/10157879
m yuxiuming.m
clear all;
clc;
a0=imread('D:\Mary.bmp');
a=a0;
subplot(2,3,1);
imshow(a);
title('原图像');
subplot(2,3,4);
imhist(a);
title('灰度图像直方图');
a=imadjust(a,[],[0.0,0.4]);
a1=a;
subplot(2,3,2);
ims
www.eeworm.com/read/357171/10214035
m 13-6.m
I = imread('eight.tif');
J = imnoise(I,'salt & pepper',0.02);
%添加椒盐噪声
subplot(221),imshow(I)
title('原图像')
subplot(222),imshow(J)
title('添加椒盐噪声图像')
K1= filter2(fspecial('average',3),J)/255;
%应用
www.eeworm.com/read/159906/10591608
m 13-6.m
I = imread('eight.tif');
J = imnoise(I,'salt & pepper',0.02);
%添加椒盐噪声
subplot(221),imshow(I)
title('原图像')
subplot(222),imshow(J)
title('添加椒盐噪声图像')
K1= filter2(fspecial('average',3),J)/255;
%应用
www.eeworm.com/read/416403/11030982
m derterd.m
RGB = imread('tape.png'); %读取图片,数据存在RGB变量中;
I = rgb2gray(RGB); %将RGB转换为灰度图像数据;
threshold = graythresh(I); %获取灰度图像转换时的阈值;
BW = im2bw(I,threshold);
www.eeworm.com/read/469046/6984269
m 13-6.m
I = imread('eight.tif');
J = imnoise(I,'salt & pepper',0.02);
%添加椒盐噪声
subplot(221),imshow(I)
title('原图像')
subplot(222),imshow(J)
title('添加椒盐噪声图像')
K1= filter2(fspecial('average',3),J)/255;
%应用
www.eeworm.com/read/449477/7503890
m edge_distill.m
function edge_distill(image_name)
Image_I=imread(image_name);
if isgray(Image_I)==0
disp('请输入灰度图像!');
return;
end
subplot(2,3,1);
imshow(Image_I);
title( '原图像' );
subplot(2,3,2)
www.eeworm.com/read/449477/7503924
m edge_distill.m
function edge_distill(image_name)
Image_I=imread(image_name);
if isgray(Image_I)==0
disp('请输入灰度图像!');
return;
end
subplot(2,3,1);
imshow(Image_I);
title( '原图像' );
subplot(2,3,2)
www.eeworm.com/read/449458/7504841
m edge_distill.m
function edge_distill(image_name)
Image_I=imread(image_name);
if isgray(Image_I)==0
disp('请输入灰度图像!');
return;
end
subplot(2,3,1);
imshow(Image_I);
title( '原图像' );
subplot(2,3,2)
www.eeworm.com/read/449458/7504875
m edge_distill.m
function edge_distill(image_name)
Image_I=imread(image_name);
if isgray(Image_I)==0
disp('请输入灰度图像!');
return;
end
subplot(2,3,1);
imshow(Image_I);
title( '原图像' );
subplot(2,3,2)