-
download_imgs
说明: 批量下载图片,可以从FLICKER上下载图片(Batch download pictures, download pictures from FLICKER)
- 2010-04-09 14:49:49下载
- 积分:1
-
TYZmyLDA
LDA算法的matlab程序。本代码是对一维信号进行LDA降维处理的函数。(LDA algorithm matlab program. This code is a one-dimensional signal processing functions LDA dimensionality reduction.)
- 2013-07-17 11:29:46下载
- 积分:1
-
matlabvho.doc
A Simple and Robust Vertical Handoff Algorithm for HeterogeneousWireless Mobile Networks.
Take as input from user the various network parameters for each network under consideration.
- 2013-11-16 23:23:40下载
- 积分:1
-
aco-v1.1
This MATLAB implementation computes a correspondence between two shapes
based on ant colony optimization (ACO). The input shapes can be either
two 2D contours (open or closed) or two arbitrary sets of 2D points. The
algorithm is described in detail in:
- 2010-12-25 00:02:12下载
- 积分:1
-
lingo
lingo软件的详细教程,适合初学者学习,看来便会用它解决复杂的规划问题。(lingo software detailed tutorial for beginners to learn, it would seem to solve complex planning problems.)
- 2011-07-22 15:05:27下载
- 积分:1
-
qumohu
图像去模糊---matlab,信号与系统,大作业题目,非常不错,希望您喜欢。(Image deblurring--- matlab, signals and systems, large job title, very good, I hope you like it.)
- 2014-10-12 19:23:01下载
- 积分:1
-
anli1
神经网络30个案例分析源码,又名智能控制30个案例分析,案例一(30 case studies of neural network source code, also known as intelligent control 30 case studies, case a)
- 2014-10-17 09:54:01下载
- 积分:1
-
rashedi2010
BGSA: binary gravitational search algorithm
- 2014-12-04 20:19:13下载
- 积分:1
-
一致性迭代学习
consensus multi-agent systems fuzzy control
- 2019-06-30 13:39:33下载
- 积分:1
-
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