jAudioFeatureExtractor.AudioFeatures
クラス AreaMoments

java.lang.Object
  上位を拡張 jAudioFeatureExtractor.AudioFeatures.FeatureExtractor
      上位を拡張 jAudioFeatureExtractor.AudioFeatures.AreaMoments

public class AreaMoments
extends FeatureExtractor

This class implements 2D statistical methods of moments as implemented by Fujinaga (1997). The number of consecutive windows that one can edit across is an editable property. Furthermore, this classes window property is affected by global window size changes.

Fujinaga, I. Adaptive Optical Music Recognition. PhD thesis, McGill University, 1997.

作成者:
Daniel McEnnis

フィールドの概要
 
クラス jAudioFeatureExtractor.AudioFeatures.FeatureExtractor から継承されたフィールド
definition, dependencies, offsets, parent
 
コンストラクタの概要
AreaMoments()
          Constructor that sets description, dependencies, and offsets from FeatureExtractor
 
メソッドの概要
 java.lang.Object clone()
          Create an identical copy of this feature.
 double[] extractFeature(double[] samples, double sampling_rate, double[][] other_feature_values)
          Calculates based on windows of magnitude spectrum.
 java.lang.String getElement(int index)
          Function permitting an unintelligent outside function (ie.
 void setElement(int index, java.lang.String value)
          Function permitting an unintelligent outside function (i.e.
 void setWindow(int n)
          Function that must be overridden to allow this feature to be set globally by GlobalChange frame.
 
クラス jAudioFeatureExtractor.AudioFeatures.FeatureExtractor から継承されたメソッド
getDepenedencies, getDepenedencyOffsets, getFeatureDefinition, setParent
 
クラス java.lang.Object から継承されたメソッド
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

AreaMoments

public AreaMoments()
Constructor that sets description, dependencies, and offsets from FeatureExtractor

メソッドの詳細

extractFeature

public double[] extractFeature(double[] samples,
                               double sampling_rate,
                               double[][] other_feature_values)
                        throws java.lang.Exception
Calculates based on windows of magnitude spectrum. Encompasses portion of Moments class, but has a delay of lengthOfWindow windows before any results are calculated.

定義:
クラス 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.
戻り値:
The extracted feature value(s).
例外:
java.lang.Exception - Throws an informative exception if the feature cannot be calculated.

setWindow

public void setWindow(int n)
               throws java.lang.Exception
Function that must be overridden to allow this feature to be set globally by GlobalChange frame.

オーバーライド:
クラス FeatureExtractor 内の setWindow
パラメータ:
n - the number of windows of offset to be used in calculating this feature
例外:
java.lang.Exception

getElement

public java.lang.String getElement(int index)
                            throws java.lang.Exception
Function permitting an unintelligent outside function (ie. EditFeatures frame) to get the default values used to populate the table's entries. The correct index values are inferred from definition.attribute value.

オーバーライド:
クラス FeatureExtractor 内の getElement
パラメータ:
index - which of AreaMoment's attributes should be edited.
例外:
java.lang.Exception

setElement

public void setElement(int index,
                       java.lang.String value)
                throws java.lang.Exception
Function permitting an unintelligent outside function (i.e. EditFeatures frame) to set the default values used to populate the table's entries. Like getElement, the correct index values are inferred from the definition.attributes value.

オーバーライド:
クラス FeatureExtractor 内の setElement
パラメータ:
index - attribute to be set
value - new value of the attribute
例外:
java.lang.Exception

clone

public java.lang.Object clone()
Create an identical copy of this feature. This permits FeatureExtractor to use the prototype pattern to create new composite features using metafeatures.

定義:
クラス FeatureExtractor 内の clone