-
dct
M=512 原图像长度
N=64
K=8
I=zeros(M,M)
J=zeros(N,N)
BLOCK=zeros(K,K)
显示原图像
I=imread( f:ceshiyuanshitu.bmp )
figure
imshow(I)
xlabel( 原始图像 )
显示水印图像
J=imread( f:ceshilogistic_nuaa64.bmp )
figure
imshow(J)
xlabel( 水印图像 )
嵌入水印
tem=1
for p=1:N
for q=1:N
x=(p-1)*K+1
y=(q-1)*K+1
BLOCK=I(x:x+K-1,y:y+K-1)
BLOCK=dct2(BLOCK)
if J(p,q)==0
a=-1
else
a=1
end
BLOCK(2,1)=BLOCK(2,1)*(1+a*0.01)
BLOCK=idct2(BLOCK)
I(x:x+K-1,y:y+K-1)=BLOCK
end
end
显示嵌入水印后的图像
figure
imshow(I)
xlabel( 嵌入水印后的图像 )
imwrite(I, f:ceshiembedded.bmp )
- 2010-06-13 18:43:39下载
- 积分:1
-
CMA
基本的常数模算法,用于信道的盲自适应算法。(Basic constant modulus algorithm for blind channel adaptive algorithm.)
- 2009-04-13 12:18:13下载
- 积分:1
-
maichongduopuleleida
这是随即信号处理中的有关应用,是一个脉冲多普勒雷达的matlab 仿真(This is the aplication of random signal )
- 2021-04-14 10:38:55下载
- 积分:1
-
cbf
用于信号处理中的DOA估计,谱估计,检测等()
- 2008-07-10 14:02:48下载
- 积分:1
-
constr
matlab 开发所需的constr。m源文件(constr.m fold)
- 2012-05-17 21:27:40下载
- 积分:1
-
Gui-design
收集在一起的学习matlab Gui设计的学习资料,讲解很详细清楚(Gather together to learn matlab Gui design learning materials, to explain very detailed and clear)
- 2012-08-13 15:10:58下载
- 积分:1
-
wavelet1D
本函数将完成对输入的一维信号进行多尺度离散小波分解(This function will complete the one-dimensional signal input multi-scale wavelet decomposition)
- 2021-03-31 15:19:08下载
- 积分:1
-
jiahua
697493自适应滤波算法的MATLAB代码 (697493 adaptive filtering algorithm MATLAB code)
- 2009-01-07 21:37:14下载
- 积分:1
-
bnb
利用matlab编写的求解优化问题的分支定界算法,程序为函数形式可直接调用(Using matlab to solve optimization problems written in branch and bound algorithm, the program can be called directly as a function of the form)
- 2010-12-08 12:55:43下载
- 积分:1
-
WiMAX-Simulator
Abstract—In this article we provide a thorough stability
analysis of two well known adaptive algorithms for equalization
based on a novel least squares reference model
that allows to treat the equalizer problem equivalently as
system identification problem.
- 2012-04-27 19:38:45下载
- 积分:1