-
ch6
用MATLAB实现哈夫曼编码的例程(以子函数形式给出)
NORM2HUFF 哈夫曼编码器
对于输入向量,NORM2HUFF(X) 返回向量的哈夫曼编码后的码串()
- 2007-08-29 20:00:35下载
- 积分:1
-
hurst
若干种r/s估值法源代码,试试看很好用,有没有朋友有其他估值法下的源代码?麻烦上传分享一下,(Number of r/s valuation method source code, give it a try very good, and have no friends there are other valuation method under the source code? From trouble to share,)
- 2008-01-05 10:57:29下载
- 积分:1
-
psnr1
计算图像PSNR,非常高效的源码,具有一定的参考价值。(Calculated image PSNR, very efficient source, with some reference value.)
- 2010-08-29 11:06:08下载
- 积分:1
-
neur pid
神经网络PID自适应控制MATLAB程序集(the collect of the neural network PID adaptivly controls MATLAB procedure)
- 2005-05-29 11:35:52下载
- 积分:1
-
matlab2
说明: matlab图像程序.zip,含各个章节的实例,挺好的学习(matlab image process. zip, containing examples of the various chapters, very good learning)
- 2008-11-20 09:17:05下载
- 积分:1
-
rwg2
Antenna and EM Modeling with MATLAB
- 2011-10-07 06:07:39下载
- 积分:1
-
2Algorithms-for-matrix-
2Algorithms for matrix extension and orthogonal wavelet filter banks over algebraic number fields 15.MCOM110409
- 2014-10-22 21:12:25下载
- 积分:1
-
color
在matlab中 HSV各分量求均值 方差以及三阶矩(Color extraction)
- 2013-08-08 01:33:18下载
- 积分:1
-
Control-Course
automotive modeling suspension(automotive modeling)
- 2011-10-06 15:45:51下载
- 积分:1
-
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