|
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.ObjectjAudioFeatureExtractor.AudioFeatures.FeatureExtractor
jAudioFeatureExtractor.AudioFeatures.SpectralFlux
public class SpectralFlux
A feature extractor that extracts the Spectral Flux from a window of samples and the preceeding window. This is a good measure of the amount of spectral chagne of a signal.
Spectral flux is calculated by first calculating the difference between the current value of each magnitude spectrum bin in the current window from the corresponding value of the magnitude spectrum of the previous window. Each of these differences is then squared, and the result is the sum of the squares.
No extracted feature values are stored in objects of this class.
フィールドの概要 |
---|
クラス jAudioFeatureExtractor.AudioFeatures.FeatureExtractor から継承されたフィールド |
---|
definition, dependencies, offsets, parent |
コンストラクタの概要 | |
---|---|
SpectralFlux()
Basic constructor that sets the definition and dependencies (and their offsets) of this feature. |
メソッドの概要 | |
---|---|
java.lang.Object |
clone()
Create an identical copy of this feature. |
double[] |
extractFeature(double[] samples,
double sampling_rate,
double[][] other_feature_values)
Extracts this feature from the given samples at the given sampling rate and given the other feature values. |
クラス jAudioFeatureExtractor.AudioFeatures.FeatureExtractor から継承されたメソッド |
---|
getDepenedencies, getDepenedencyOffsets, getElement, getFeatureDefinition, setElement, setParent, setWindow |
クラス java.lang.Object から継承されたメソッド |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public SpectralFlux()
メソッドの詳細 |
---|
public double[] extractFeature(double[] samples, double sampling_rate, double[][] other_feature_values) throws java.lang.Exception
In the case of this feature, the sampling_rate parameter is ignored.
FeatureExtractor
内の extractFeature
samples
- The samples to extract the feature from.sampling_rate
- The sampling rate that the samples are
encoded with.other_feature_values
- The values of other features that are
needed to calculate this value. The
order and offsets of these features
must be the same as those returned by
this class's getDependencies and
getDependencyOffsets methods respectively.
The first indice indicates the feature/window
and the second indicates the value.
java.lang.Exception
- Throws an informative exception if
the feature cannot be calculated.public java.lang.Object clone()
FeatureExtractor
内の clone
|
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |