-
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
-
HDB3-matlab
HDB3扰码技术的matlab编程实现,自己的论文整理,计算机原理必备(HDB3 scrambler technology of matlab programs, their papers, computer principle is necessary)
- 2010-05-08 23:51:25下载
- 积分:1
-
PNN
该程序为MATLAB源码,使用PNN算法进行分类。(Classify using a probabilistic neural network)
- 2012-05-01 15:07:36下载
- 积分:1
-
JC-method
说明: 一个经典的matlab编程的JC法的可靠度的计算,对可靠度的学习很有用(Matlab programming a classic calculation of reliability of JC method, useful for the study of reliability)
- 2011-04-10 13:56:12下载
- 积分:1
-
getwlfeat
waveform length feature extraction
- 2013-08-18 00:08:42下载
- 积分:1
-
SAR
用MATLAB仿真雷达chirp信号,并对其进行距离向和方位向脉冲压缩,对有距离徒动的进行徒动矫正(Chirp radar signal simulation using MATLAB, and its distance and azimuth pulse compression, for there were only moving away only corrective action)
- 2021-04-27 14:08:44下载
- 积分:1
-
airxsfra
music高阶谱分析算法,用MATLAB实现的压缩传感,包括AHP,因子分析,回归分析,聚类分析,包含了阵列信号处理的常见算法,模拟数据分析处理的过程,含噪脉冲信号进行相关检测,IDW距离反比加权方法。( music higher order spectral analysis algorithm, Using MATLAB compressed sensing, Including AHP, factor analysis, regression analysis, cluster analysis, Contains a common array signal processing algorithm, Analog data analysis processing, Noisy pulse correlation detection signal, IDW inverse distance weighting method.)
- 2016-04-02 22:01:01下载
- 积分:1
-
MATLAB
MATLAB(矩阵实验室)是MATrix LABoratory的缩写,是一款由美国The MathWorks公司出品的商业数学软件。MATLAB是一种用于算法开发、数据可视化、数据分析以及数值计算的高级技术计算语言和交互式环境。除了矩阵运算、绘制函数/数据图像等常用功能外,MATLAB还可以用来创建用户界面及与调用其它语言(包括C,C++和FORTRAN)编写的程序。(MATLAB (MATrix LABoratory) is The abbreviation of MATrix LABoratory, is a by The United States The MathWorks company production of a commercial mathematical software. MATLAB is a kind of for algorithm development, data visualization, data analysis and numerical calculation of senior technical computing language and interactive environment. Besides drawing function/data image matrix operations, commonly used functions, such as MATLAB can also be used to create the user interface and the calls to other languages (including C, C++ and FORTRAN) program.
)
- 2013-10-18 17:44:50下载
- 积分:1
-
nibianqi
变频调速系统仿真搭建模型 由于观测仿真波形 记录以及分析实验结果(Variable speed control system simulation build the observation model simulation and analysis of experimental results wave record)
- 2012-05-29 12:31:31下载
- 积分:1
-
pmsm_dtc
利用S函数建立的永磁同步电动机直接转矩控制模型,共大家参考。(Using the S function to establish permanent magnet synchronous motor direct torque control model of reference.)
- 2020-06-30 10:20:02下载
- 积分:1