代码搜索:图像加密
找到约 10,000 项符合「图像加密」的源代码
代码结果 10,000
www.eeworm.com/read/368317/9702036
txt 从内存流中读取图片给数据库的i字段.txt
从内存流中读取图片给数据库的i字段
procedure TForm1.Button5Click(Sender: TObject);
//保存图像
var
strm: TMemoryStream;
ext: String;
begin
if image1.picture.Graphic nil then //避免image1中无图像保存出错
begin
www.eeworm.com/read/249868/12465371
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/249868/12465447
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/334943/12560637
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/334943/12560741
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/300638/13901936
m example6_2radon变换.m
%首先,提取图像的局部边缘,见图6-24。
I = imread('ic.tif');
BW = edge(I);
imshow(I)
figure, imshow(BW)
%然后,对边缘图像做Radon变换,见图6-25。
theta = 0:179;
[R,xp] = radon(BW,theta);
imagesc(theta, xp, R);
co
www.eeworm.com/read/200130/15440635
m sumarize11_6_2.m
%载入图像
I = imread('pout.tif');
%生成对应的二值图像
imshow(I)
%交互式选择区域
BW = roipoly
%定义滤波器
h = fspecial('unsharp');
%进行区域滤波
I2 = roifilt2(h,I,BW);
figure, imshow(I2)
www.eeworm.com/read/339051/12265837
htm 基于状态机和流水线技术的3des加密算法及其fpga设计-单片机技术2.htm
基于状态机和流水线技术的3DES加密算法及其FPGA设计-单片机
www.eeworm.com/read/339051/12265972
htm 基于状态机和流水线技术的3des加密算法及其fpga设计-单片机技术1.htm
基于状态机和流水线技术的3DES加密算法及其FPGA设计-单片机
www.eeworm.com/read/308919/13687410
txt 原理.txt
数字图像处理DCT是数字图像处理中的一种重要处理手段,被广泛地用与图像的压缩编码算法中,已有的各种成熟的压缩标准如JPEG,MPEG,H.26X以及HDTV等都无一例外地采用基于DCT/IDCT的压缩编码。离散余弦变换(Discrete Cosine Transform)是一种最主要的正交变换。它将图像信号从空间域变换到DCT域,保持原始信号的熵和能量不变,却使得DCT域系数之间的相关性减弱,然后 ...