代码搜索:图像加密

找到约 10,000 项符合「图像加密」的源代码

代码结果 10,000
www.eeworm.com/read/449458/7504776

m level_set.m

function level_set(image_name,N,outname) %求一图像的水平集 %输入参数:image_name---图像文件名 % :N--------阀值(0~255) if nargin
www.eeworm.com/read/449458/7504834

m level_line.m

function level_line(image_name,N) %求一图像的水平集、线 %输入参数:image_name---图像文件名 % :N--------阀值(0~255) if nargin
www.eeworm.com/read/449458/7504835

m contour_line.m

function contour_line(image_name,N) %求一图像的等高线 %输入参数:image_name---图像文件名 % :N--------阀值(0~255) if nargin
www.eeworm.com/read/449458/7504839

m level_set.m

function level_set(image_name,N) %求一图像的水平集 %输入参数:image_name---图像文件名 % :N--------阀值(0~255) if nargin
www.eeworm.com/read/449458/7504869

m level_line.m

function level_line(image_name,N) %求一图像的水平集、线 %输入参数:image_name---图像文件名 % :N--------阀值(0~255) if nargin
www.eeworm.com/read/449458/7504871

m level_set.m

function level_set(image_name,N) %求一图像的水平集 %输入参数:image_name---图像文件名 % :N--------阀值(0~255) if nargin
www.eeworm.com/read/297303/8032083

m facialoutline-detect.m

clear; %清空工作区变量 Image=imread('zjt.JPG'); %读取图像文件 imshow(Image); Iycbcr=rgb2ycbcr(Image); %颜色空间转换 [m,n,k]=size(Image); for i=1:1:m %根据CbCr的阈值生成二值图像 for j=1:1:n
www.eeworm.com/read/240538/13214737

m 8-13.m

rgb=imread('lily.tif'); imshow(rgb); title('原始图像'); [X_no_dither,map]=rgb2ind(rgb,8,'nodither'); [X_dither,map]=rgb2ind(rgb,8,'dither'); figure, imshow(X_no_dither,map); title('没有抖动的变换图像'); fi
www.eeworm.com/read/324902/13238773

m 14-5.m

I = imread('cameraman.tif'); PSF = fspecial('gaussian',60,10); %PSF点扩展函数 J = edgetaper(I,PSF); %对图像边缘模糊化处理 subplot(1,2,1);imshow(I,[]);title('原始图像'); subplot(1,2,2);imshow(J,[]);title('边缘模糊化');
www.eeworm.com/read/324902/13238861

m 8-13.m

rgb=imread('lily.tif'); imshow(rgb); title('原始图像'); [X_no_dither,map]=rgb2ind(rgb,8,'nodither'); [X_dither,map]=rgb2ind(rgb,8,'dither'); figure, imshow(X_no_dither,map); title('没有抖动的变换图像'); fi