资源简介
用matlab计算一些基本的音频特征,基本的特征包括:特征统计、Energy Entropy Standard Deviation (std)、均值信息熵、过零率检测、频谱衰减等等
代码片段和文件信息
function FF = computeAllStatistics(fileName win step)
% This function computes the average and std values for the following audio
% features:
% - energy entropy
% - short time energy
% - spectral rolloff
% - spectral centroid
% - spectral flux
%
% ARGUMENTS:
% fileName: the name of the .wav file in which the signal is stored
% win: the processing window (in seconds)
% step: the processing step (in seconds)
%
% RETURN VALUE:
% F: a 12x1 array containing the 12 feature statistics
%
[x fs] = wavread(fileName);
EE = Energy_Entropy_Block(x win*fs step*fs 10);
E = ShortTimeEnergy(x win*fs step*fs);
Z = zcr(x win*fs step*fs fs);
R = SpectralRollOff(x win*fs step*fs 0.80 fs);
C = SpectralCentroid(x win*fs step*fs fs);
F = SpectralFlux(x win*fs step
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1093 2008-02-05 15:39 MATLAB音频特征提取\computeAllStatistics.m
文件 2830 2008-03-16 23:24 MATLAB音频特征提取\computeFeaturesDirectory.m
文件 563 2008-02-05 14:49 MATLAB音频特征提取\computeHistError.m
文件 7072 2008-03-16 23:22 MATLAB音频特征提取\Documentation.html
文件 584 2006-03-07 11:39 MATLAB音频特征提取\Energy_Entropy_Block.m
文件 96676 2008-03-16 22:34 MATLAB音频特征提取\example.jpg
文件 1345 2009-05-19 13:09 MATLAB音频特征提取\license.txt
文件 860 2008-02-11 15:07 MATLAB音频特征提取\myHist.m
文件 2634 2010-01-14 20:57 MATLAB音频特征提取\readme.txt
文件 672 2006-02-16 08:01 MATLAB音频特征提取\ShortTimeEnergy.m
文件 620 2006-02-23 10:32 MATLAB音频特征提取\SpectralCentroid.m
文件 665 2006-01-30 15:38 MATLAB音频特征提取\SpectralEntropy.m
文件 599 2008-02-04 23:08 MATLAB音频特征提取\SpectralFlux.m
文件 659 2006-09-12 14:20 MATLAB音频特征提取\SpectralRollOff.m
文件 1895 2007-01-21 23:43 MATLAB音频特征提取\statistic.m
文件 497 2006-01-30 15:38 MATLAB音频特征提取\zcr.m
目录 0 2010-01-14 20:59 MATLAB音频特征提取
----------- --------- ---------- ----- ----
119264 17
相关资源
- fusion_change_detection SAR图像变化检测代
- MotionDetection 静止背景下运动目标检测
- edge_detection 利用小波边缘检测算法实
- image-fusion-and-detection-on-curvelet-wavelet
- copy-and-paste-detection
- LBF “Implicit Active Contours Driven by Loca
- MutiTargetDetection 多目标检测与跟踪算法
-
saliency-ob
ject-or-region-detection 该文件 - surface-quality-detection 用matlab实现的表面
- Matlabwaveenergy 对信号f(x)进行三层小
- Pedestrian-Detection 一个简单的基于HOG的
- Ship-detection 复杂杂波背景下
- MIMO_detection MIMO系统的几种检测方案
- Matlab-edge-detection-operator
- sar-edge-detection sar 图像边缘检测算子
- ber_linear_detection MIMO系统线性检测算法
- Motion_detect_with_RGBshadow_remove 利用背景
- Moving-target-detection 运动目标检测的一
- ChangeDetectionPCAkMeans 用于变化检测的方
- HC-visual-detection-by-matlab 本资源是清华
- matlab-face-detection pca+svm 与pca +adaboost
- PCA-Face-detection-and-recognition PCA 人脸检
- HaarPSRC=Vehicle-detection 运用harr特征+SR
- Rectangular-Detection 矩形检测
- bridge-road-cracks-detection 代码是matlab编写
- pedestrian-detectionsvms.tar
- Vblast 仿真(ZF
-
Wind_Turbine_Simuli
nk - MRFaEM-change-detection
- HogPSVM-Pedestrian-Detection- 保证可用的
评论
共有 条评论