-
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
-
kalmanFilter
kalman滤波器一个matlab程序,用于处理语音信号。(a kalman filter matlab program for the treatment of voice signal.)
- 2007-11-16 00:49:40下载
- 积分:1
-
lianlu
卫星地球站传输链路计算,卫星通信中,卫星损耗的计算十分重要,用于判断通信质量,以及卫星载荷的饱和程度(Satellite earth station transmission link, satellite communication, satellite loss calculation is very important for judging the quality of communication, as well as satellite payload saturation level)
- 2013-04-20 22:59:59下载
- 积分:1
-
GMSK1
GMSK的调制和解套,显示基带信号和解调信号波形及其频谱图(GMSK modulation and some sort of relief, showing a baseband signal and demodulating the signal waveform and its spectrum)
- 2020-11-28 19:19:29下载
- 积分:1
-
用于Matlab的彩色图像色彩空间转换的MEX文件!
用于MATLAB的彩色图像色彩空间转换的MEX文件(for MATLAB color image color space conversion MEX documents)
- 2005-03-14 16:17:01下载
- 积分:1
-
ch3_9
用MATLAB作的一个滤波程序
(MATLAB for a filtering process ///////////////////// )
- 2006-05-20 22:21:16下载
- 积分:1
-
Desktop2
电机的仿真,运用simulink对电机进行分块建模仿真,得出电机的转速和转矩的图像(The simulation using simulink motor on the motor, it is concluded that the partitioned modeling simulation of motor speed and torque images)
- 2011-05-28 19:35:02下载
- 积分:1
-
FastICA11
先对三幅图像进行混合,然后采用FASTICA算法混合图像进行盲分离(First three images mixed, then FASTICA algorithm mixed image blind separation)
- 2012-10-27 16:06:29下载
- 积分:1
-
关于LQG控制的简单例子
说明: 一个关于LQG控制的简单例子,对相关函数的调用的理解相当有帮助,亲测有效实用。(A simple example of LQG control is very helpful to understand the call of related functions, and it is effective and practical to test personally.)
- 2021-04-24 02:18:47下载
- 积分:1
-
inv_matrix
矩阵分解求逆中的Cholkski分解算法的Matlab仿真。(Inverse matrix decomposition decomposition algorithm in the Matlab simulation Cholkski.)
- 2010-12-01 11:59:08下载
- 积分:1