-
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
-
PINBALL
Pin Ball IN C++ Plateforn Turbo C++
- 2010-11-11 06:30:05下载
- 积分:1
-
kl
说明: matlab实现K-L变换,可用于图像去噪,地震资料去噪(K-L transform. It can be used in noise reduction and image enhancement)
- 2010-05-15 20:17:13下载
- 积分:1
-
SFM
顺序函数法求解一维非稳态导热反问题的源代码(Sequential function method for solving one-dimensional unsteady heat conduction inverse problem of the source code)
- 2013-11-22 16:47:02下载
- 积分:1
-
LMSmatlab
变步长的LMS自适应滤波算法matlab程序(Variable step size LMS adaptive filtering algorithm matlab program)
- 2015-10-21 08:37:34下载
- 积分:1
-
STFT
MATLAB实现短时傅里叶变换,短时傅里叶逆变换。直接配置好参数就可以用,实用性强。(MATLAB implementation of short time Fourier transform, short time Fourier inverse transform. Direct configuration of parameters can be used, practically.)
- 2017-10-24 16:18:50下载
- 积分:1
-
0081GUI
这是一个基于GUI系统。 GUI是在命令行调用通过键入“ui_start”。 GUI是自我解释性。
工具提示是由于在蓝颜色。将光标定位需要这些详细的说明。主要文件
“runsim.m”。在这些模拟的单变量的选择是没有明确给出。这是因为单输入单输出的结果为特定
调制类型显示在每一个用于比较的阴谋。(This is a GUI based system. The GUI is invoked from the command line by typing "ui_start". The GUI is self explanatory.
Tool tips are given in blue color. The cursor needs to be positioned on these for detailed explanation. The main file is
"runsim.m". In these simulations the SISO option is not explicitly given. This is because the SISO result for a particular
type of modulation is shown in every plot for purposes of comparison.
This software has been tested on MATLAB version 6.0 and above with signal processing and communication toolbox options.)
- 2010-05-13 02:08:34下载
- 积分:1
-
incandadf
由关联矩阵求邻接矩阵的MATLAB代码,附有清晰的注释(Seeking the MATLAB code of adjacency matrix by the correlation matrix
)
- 2014-08-28 15:57:12下载
- 积分:1
-
Matlab-axis-settings
MATLAB坐标轴设置,包括颜色的设置,步长的设置,添加图例,改变背景等(MATLAB axis is provided, including color settings, step size settings, add legend, change the background etc.
)
- 2015-01-12 15:23:56下载
- 积分:1
-
EMPM
本资料给出了数字预失真,包络多项式模型的matlab程序(this material include the programs of the EMP model of DPD)
- 2012-02-16 19:21:04下载
- 积分:1