-
DBF_for_Spaceborne_Radar_Remote_Sensing
关于星载SAR中DBF技术的应用,给了一些仿真实验,并给出了实验结果。(Spaceborne SAR of DBF on the application of technology to a number of simulation and experimental results are given.)
- 2010-07-03 12:26:57下载
- 积分:1
-
som_all123
convert the c code to matlab compatible When executing, you need both c file and the m-file
- 2010-11-27 02:55:03下载
- 积分:1
-
aoa
The Art Of Assembly Language
- 2007-01-07 23:58:30下载
- 积分:1
-
Assignment
Wander Azimuth Polar Flight
- 2012-10-03 17:53:22下载
- 积分:1
-
dotpointtarget
SAR 点目标仿真经典 适合初学者学习合成孔径雷达(SAR point target)
- 2015-01-20 22:26:13下载
- 积分:1
-
基于 JPEG/JPEG2000的医学图像压缩方法
提出了一种基于 JPEG/JPEG2000相结合的医学图像感兴趣区域压缩方法。该方法对在人为选定
医学图像的感兴趣区域采用无损的 JPEG2000压缩 ,而对其他图像区域则采用高压缩比的 JPEG压缩,较好地解决了医学图像的高压缩比和高质量之间的矛盾。(Based on a combination of JPEG/JPEG2000 region of interest of medical image compression method. The method of artificially selected region of interest of medical images using lossless JPEG2000 compression, and on other image regions using high compression ratio of JPEG compression, a better solution to the medical image and high-quality high-compression ratio between the contradictions.)
- 2007-10-07 11:03:36下载
- 积分:1
-
ImageSegmentation
image segmentation algo implementation using matlab
- 2009-10-28 03:04:59下载
- 积分:1
-
lisan-Hopfield-Shenjingwangluo
离散Hopfield神经网络的分类优化计算,在M ATLAB中完美运行(Calculation of classification optimization of discrete Hopfield neural networks, function perfectly in the M ATLAB)
- 2015-01-08 12:23:35下载
- 积分:1
-
程序2
室内定位时差定位算法。包括 chan算法,fang算法。功能是实现室内定位。在3到7个接收基站的基础上,获得较高精度的定位(Indoor location TDOA location algorithm. Including Chan algorithm and Fang algorithm. Function is to achieve indoor positioning. On the basis of 3 to 7 receiving base stations, high precision positioning can be achieved.)
- 2019-04-27 15:04:13下载
- 积分: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