资源简介
可将载有隐藏信息的六张黑白图片叠加到一张彩色图片中,使肉眼无法辨别,用于文件加密。具体使用方法,详见程序。
代码片段和文件信息
function alt=alterim(i1i2)
% This function select the pixels alternatively from text image 1 & 2 and stored
% it in ‘alt‘ text image respectively
% i1 - Text image 1 to be encoded
% i2 - Text image 2 to be encoded
%alt - Resulted encoded text image which have the pixel of i1 & i2 alternatively
for x=1:size(i11)
for y=1:size(i12)
if(mod((x+y)2)==0) %Selction of pixels from text images i1 & i2
alt(xy:)=i1(xy:); %Pixel taken from text image i1
else
alt(xy:)=i2(xy:); %Pixel taken from text image i2
end
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 598 2007-01-18 13:04 Hide the six text pages in a color image复杂\Text_hide_color_image\alterim.m
文件 716 2007-01-18 13:09 Hide the six text pages in a color image复杂\Text_hide_color_image\imhide.m
文件 1110 2007-01-18 13:09 Hide the six text pages in a color image复杂\Text_hide_color_image\imxtract.m
文件 6962 2007-01-18 13:26 Hide the six text pages in a color image复杂\Text_hide_color_image\main.m
文件 555 2007-01-18 13:09 Hide the six text pages in a color image复杂\Text_hide_color_image\txtxtract.m
..A.SH. 12800 2007-01-17 21:18 Hide the six text pages in a color image复杂\Text_hide_color_image\html\Thumbs.db
文件 23364 2007-01-18 13:27 Hide the six text pages in a color image复杂\Text_hide_color_image\html\main_01.png
文件 114605 2007-01-18 13:27 Hide the six text pages in a color image复杂\Text_hide_color_image\html\main_02.png
文件 11673 2007-01-18 13:27 Hide the six text pages in a color image复杂\Text_hide_color_image\html\main_03.png
文件 3820 2007-01-18 13:27 Hide the six text pages in a color image复杂\Text_hide_color_image\html\main.png
文件 18512 2007-01-18 13:27 Hide the six text pages in a color image复杂\Text_hide_color_image\html\main.html
目录 0 2010-04-27 18:16 Hide the six text pages in a color image复杂\Text_hide_color_image\html
目录 0 2010-04-27 18:16 Hide the six text pages in a color image复杂\Text_hide_color_image
目录 0 2010-04-27 18:15 Hide the six text pages in a color image复杂
----------- --------- ---------- ----- ----
194715 14
- 上一篇:matlab 树状列表GUI
- 下一篇:基于MATLAB的无线回传拓扑规划含程序代码
相关资源
- 基于MATLAB的无线回传拓扑规划含程序
- matlab 树状列表GUI
- JPEG图像压缩和解压MATLAB程序
- MATLAB不识别VS缺失的配置文件支持的最
- 64位MATLAB添加VS2017支持mbuild -setup未找
- 基于MATLAB GUI的电机控制及转速动画显
- DPCM译码器的设计与仿真——使用MAT
- matlab2017b许可证文件
- 一个教你如何用matlab写mimo系统的程序
- 凝聚型层次聚类的matlab代码
- 基于Matlab的异步电机变频调速系统的
- 用matlab数值求解电偶极子的等电势图
- matlab 白细胞数目自动计数的图像处理
- 背景建模和前景分割的方式把运动车
- 基于图割的matlab代码
- 大地主题解算 正反算matlab程序
- Radar Systems Analysis and Design Using Matlab
- MATLAB GA工具箱
- Kriging插值MATLAB代码
- 地震动衰减规律的matlab实现-PGA估算
- 陈怀琛《工程线性代数MATLAB版书本里
- matlab ML 仿真程序
- LMS自适应陷波器,自适应RLS自适应算
- MeanShift_MATLAB代码+详细注释
- matlab2019a.txt
- Floyd算法的完整Matlab程序
- MATLAB 字体手写字识别
- 密度峰值聚类matlab代码
-
详解MATLAB/SIMUli
nk通信系统建模与仿 - 基于Matlab的PSNR算法实现源码,可直接
评论
共有 条评论