-
polgui_ver1_r14
如何使用GUI那就下这个吧,可能对你有很大帮助呢(how do you use GUI, it can tell you ,don t lose it ,you can get something from it.thank you)
- 2009-05-17 16:29:38下载
- 积分:1
-
MutualInformationEstimation
computing Mutual information estimation of a mixture sounds
- 2010-02-18 16:57:46下载
- 积分:1
-
Beam
Bema analysis by using the finte element method
- 2013-09-28 22:00:49下载
- 积分:1
-
gongertidufa
共轭梯度法求多元函数的极值,使用matlab程序即可解答(Conjugate gradient method for the extreme multi-function use matlab program to answer)
- 2011-12-21 21:45:46下载
- 积分:1
-
anita_bisection_method
bisection method for numerical analysis
- 2014-11-25 23:27:49下载
- 积分:1
-
ems1
混合动力汽车控制策略模型,可通过设置接口实现对被控对象的控制(Hybrid vehicle control strategy model that can be controlled by setting the object' s interface for control)
- 2014-01-16 15:41:19下载
- 积分:1
-
fd2d_3.2
二维情况下用FDTD方法模拟电磁波的传播情况,加入了理想匹配层,用C和MATLAB混合编程,信号源是高斯脉冲(Two-dimensional case with the FDTD simulation of electromagnetic wave propagation, no additional absorbing boundary condition, mixed with the C and MATLAB programming, the signal source is a Gaussian pulse)
- 2011-05-14 10:25:44下载
- 积分:1
-
edge_detect
program to detect edges with different edge detection methods
- 2012-06-11 21:08:01下载
- 积分:1
-
Fea_Gabor_brodatz
该代码为用gabor变换算法提取图像的纹理特征,用matlab编写,可应用于基于纹理的图像检索系统。其中还包含一篇gabor变换相关的文献(The code for the transformation algorithm using gabor texture features extracted using matlab preparation, can be applied to image retrieval system based on texture)
- 2010-07-05 10:21:26下载
- 积分:1
-
Blocks
clc
close all
clear all
I=imread( desert.jpg )
[r c]=size(I)
bs=16 Block Size (8x8)
nob=(r/bs)*(c/bs) Total number of 8x8 Blocks
Dividing the image into 8x8 Blocks
kk=0
for i=1:(r/bs)
for j=1:(c/bs)
Block(:,:,kk+j)=I((bs*(i-1)+1:bs*(i-1)+bs),(bs*(j-1)+1:bs*(j-1)+bs))
end
kk=kk+(r/bs)
end
Accessing individual Blocks
figure imshow(Block(:,9,1)) This shows u the fist 8x8 Block in a figure window
figure imshow(Block(:,:,2))
- 2013-03-17 15:01:05下载
- 积分:1