-
question4
特征选择与变换的算法实现,计算贡献率与主成分分析(Feature selection and transformation algorithms to calculate the contribution rate and principal component analysis)
- 2011-06-06 18:09:51下载
- 积分:1
-
book
参数化时频分析理论、方法
及其在工程信号分析中的应用
(THEORY, METHODOLOGY OF PARAMETERIZED
TIME FREQUENCY ANALYSIS AND ITS APPLICATION IN
ENGINEERING SIGNAL PROCESSING
)
- 2014-09-08 09:43:28下载
- 积分:1
-
frmnts1
关于共振峰提取的程序,已调试过,可以使用,欢迎交流借鉴。(Formant extraction procedures, debugging, you can use, welcomed the exchange learn.)
- 2013-03-20 14:12:40下载
- 积分:1
-
erode-and-dilate
形态学操作,图像的膨胀和腐蚀操作,使用matlab进行实现。(Morphological operations, image dilation and erosion operations, using matlab to achieve.)
- 2014-11-12 10:54:36下载
- 积分:1
-
rician
一个基于MATLAB的rician信道仿真程序,对莱斯信道建模的初学者有所帮助(A MATLAB-based rician channel simulation program, Royce channel modeling beginners help)
- 2021-03-19 15:29:19下载
- 积分:1
-
matrixscott
this is matrix converter file with simulink
- 2010-12-28 14:31:01下载
- 积分:1
-
fusemoxingtiqu
说明: 基于肤色的人脸检测,肤色的提取。基于肤色的人脸检测方法,包括肤色模型建立和肤色分割过程两大部分内容。在比较了颜色空间和两种模型后,选择了在 YCbCr 空间建立高斯模型。输入图像经过相似度计算、阈值分割、最后得到人脸区域。-(matlab color detection procedure. rgb2tsl.m color model used for conversion, will be converted to RGB mode TSL model. realize skin.m color detection, color region is white, non-color region is black.)
- 2010-05-03 10:23:52下载
- 积分:1
-
fractal-use
分形的练习一
①Koch曲线
用复数的方法来迭代Koch曲线
clear i 防止i被重新赋值
A=[0 1] 初始A是连接(0,0)与(1,0)的线段
t=exp(i*pi/3)
n=2 n是迭代次数
for j=0:n
A=A/3 a=ones(1,2*4^j)
A=[A (t*A+a/3) (A/t+(1/2+sqrt(3)/6*i)*a) A+2/3*a]
end
plot(real(A),imag(A))
axis([0 1 -0.1 0.8])
②Sierpinski三角形
A=[0 1 0.5 0 0 1] 初始化A
n=3 迭代次数
for i=1:n
A=A/2 b=zeros(1,3^i) c=ones(1,3^i)/2
A=[A A+[c b] A+[c/2 c]]
end
for i=1:3^n
patch(A(1,3*i-2:3*i),A(2,3*i-2:3*i), b ) patch填充函数
end
(Fractal
Exercise One
The ① Koch curve
Plural iteration Koch curve
clear i to prevent i is reassigned
A = [0 1] initial A is a connection (0,0) and (1,0) of the segments
t = exp (i* pi/3)
n = 2 n is the number of iterations
for j = 0: n
A = A/3 a = ones (1,2* 4 ^ j)
A = [A (t* A+ a/3) (A/t+ (1/2+ sqrt (3)/6* i)* a) A+2/3* a]
end
plot (real (A), imag (A))
axis ([0 1-0.1 0.8])
② Sierpinski triangle
A = [0 1 0.5 0 0 1] initialized A
n = 3 the number of iterations.
for i = 1: n
A = A/2 b = zeros (1,3 ^ i) c = ones (1,3 ^ i)/2
A = [A A+ [c b] A+ [c/2 c]]
end
for i = 1:3 ^ n
patch (A (1,3* i-2: 3* i), A (2,3* i-2: 3* i), b ) patch filled function
end)
- 2013-03-02 10:03:09下载
- 积分:1
-
计算器gui
说明: 一个简单的计算器gui界面,实现加减乘除和三角函数计算。(A simple calculator GUI interface to realize addition, subtraction, multiplication and division and trigonometric function calculation.)
- 2020-06-19 11:20:02下载
- 积分:1
-
fingerprintrecognizer
A fingerprint recognizing system is built with two
principal components: the fingerprint admin istrator
and the fingerprint recognizer. Fingerprints are
identified by their special features such as ridge
endings, ridge bifurcation, short ridges, and ridge
enclosures, which are collectively called the
minutiae.
- 2010-11-07 12:17:58下载
- 积分:1