-
dsakf
% 文件名:randlsbget.m
% 程序员:余波
% 编写时间:2007.6.25
% 函数功能: 本函数将完成提取隐秘于上的秘密信息
% 输入格式举例:result=( scover.jpg ,56, secret.txt ,2001)
% 参数说明:
% output是信息隐藏后的图象
% len_total是秘密信息的长度
% goalfile是提取出的秘密信息文件
% key是随机间隔函数的密钥
% result是提取的信息
function result=randlsbget(output,len_total,goalfile,key)
ste_cover=imread(output)
ste_cover=double(ste_cover)
% 判断嵌入信息量是否过大
[m,n]=size(ste_cover)
frr=fopen(goalfile, a )
% p作为信息嵌入位计数器将信息序列写回文本文件
p=1
% 调用随机间隔函数选取像素点
[row,col]=randinterval(ste_cover,len_toal,key)
for i=:len_toal
if bitand(ste_cover(row(i),col(i)),1)==1
fwrite(frr,1, bit1 )
result(p,1)
else
fwrite(frr,0, bit1 )
result(p,1)=0
end
if p==len_total
break
end
p=p+1
end
fclose(frr)
()
- 2007-06-28 16:08:04下载
- 积分:1
-
gistdescriptor
gist算子的matlab编程。本人自己编写(The gist Operators matlab programming. I have written)
- 2012-11-20 10:44:06下载
- 积分:1
-
nihe
这是计算机拟和方法的例程集锦,对数学计算和建模非常有用.(This is a computer and methods to routine collection of mathematical calculations and modeling very useful.)
- 2007-08-24 16:45:49下载
- 积分:1
-
waveleteTest
利用matlab自带函数wavedec2、wcodemat实现二维小波分解与简单压缩的实例。(using Matlab wavedec2 bringing their function. wcodemat 2D wavelet decomposition and compression simple examples.)
- 2007-05-11 20:55:59下载
- 积分:1
-
33system
微电网遗传算法优化,33节点的配电网网络重构,适合初学者学习(Microgrid genetic algorithm optimization, 33 node distribution network reconfiguration, suitable for beginners to learn.)
- 2020-11-17 11:19:40下载
- 积分:1
-
MATLAB_guide
说明: 文章中介绍了matlab的所有重要命令,能够满足简单matlab编程的需求(Matlab article describes all the important orders, to meet the demand for simple programming matlab)
- 2008-10-13 17:44:37下载
- 积分:1
-
GPS-INS
说明: 惯性导航+GPS组合导航,经典算法,不要错过。(Inertial Navigation+ GPS navigation, the classical algorithm, do not miss.)
- 2010-04-27 14:42:49下载
- 积分:1
-
lasso
选元变量,用于回归分析中的变量选择问题,处理数据降维(select vabriable)
- 2013-03-06 18:43:32下载
- 积分:1
-
GetPricesFromYahoo
Get stock data from Yahoo! Finance to Matlab.
- 2014-02-01 20:54:35下载
- 积分:1
-
imageprocessing3
1.选择一幅图像,利用散焦模型或运动模糊模型对该图像进行模糊处理;利用逆滤波对模糊图像进行复原处理,显示原始图像、模糊图像以及复原处理后的图像。
2.利用迭代算法对模糊图像进行逆卷积复原处理,显示原始图像、模糊图像以及复原处理后的图像。
(1. Select an image, the use of defocusing model or the model of the motion-blurred images fuzzy processing the use of inverse filtering for fuzzy image restoration processing, display the original image, fuzzy images, as well as recovery after treatment images. 2. Use of iterative algorithm for fuzzy image restoration deconvolution processing, show the original image, fuzzy images, as well as recovery after treatment images.)
- 2007-12-14 16:41:14下载
- 积分:1