Uses of Interface
marf.Preprocessing.IPreprocessing

Packages that use IPreprocessing
marf   
marf.FeatureExtraction   
marf.FeatureExtraction.Cepstral   
marf.FeatureExtraction.F0   
marf.FeatureExtraction.FFT   
marf.FeatureExtraction.LPC   
marf.FeatureExtraction.MinMaxAmplitudes   
marf.FeatureExtraction.RandomFeatureExtraction   
marf.FeatureExtraction.RawFeatureExtraction   
marf.FeatureExtraction.Segmentation   
marf.Preprocessing   
marf.Preprocessing.CFEFilters   
marf.Preprocessing.Dummy   
marf.Preprocessing.Endpoint   
marf.Preprocessing.FFTFilter   
 

Uses of IPreprocessing in marf
 

Methods in marf that return IPreprocessing
static IPreprocessing MARF.getPreprocessing()
          Retrieves current Preprocessing reference.
 

Uses of IPreprocessing in marf.FeatureExtraction
 

Fields in marf.FeatureExtraction declared as IPreprocessing
protected  IPreprocessing FeatureExtraction.oPreprocessing
          Internal reference to the Preprocessing module.
 

Methods in marf.FeatureExtraction that return IPreprocessing
 IPreprocessing FeatureExtraction.getPreprocessing()
          Retrieves inner preprocessing reference.
 IPreprocessing IFeatureExtraction.getPreprocessing()
          Retrieves inner preprocessing reference.
 

Methods in marf.FeatureExtraction with parameters of type IPreprocessing
static IFeatureExtraction FeatureExtractionFactory.create(java.lang.Integer poFeatureExtractionMethod, IPreprocessing poPreprocessing)
          Instantiates a FeatureExtraction module indicated by the first parameter with the 2nd parameter as an argument.
static IFeatureExtraction FeatureExtractionFactory.create(int piFeatureExtractionMethod, IPreprocessing poPreprocessing)
          Instantiates a FeatureExtraction module indicated by the first parameter with the 2nd parameter as an argument.
 void FeatureExtraction.setPreprocessing(IPreprocessing poPreprocessing)
          Allows setting the source preprocessing module.
 void IFeatureExtraction.setPreprocessing(IPreprocessing poPreprocessing)
          Allows setting the source preprocessing module.
 

Constructors in marf.FeatureExtraction with parameters of type IPreprocessing
FeatureExtraction(IPreprocessing poPreprocessing)
          Main FeatureExtraction constructor.
FeatureExtractionAggregator(IPreprocessing poPreprocessing)
          Implementation of the feature extraction interface.
 

Uses of IPreprocessing in marf.FeatureExtraction.Cepstral
 

Constructors in marf.FeatureExtraction.Cepstral with parameters of type IPreprocessing
Cepstral(IPreprocessing poPreprocessing)
          Cepstral Constructor.
 

Uses of IPreprocessing in marf.FeatureExtraction.F0
 

Constructors in marf.FeatureExtraction.F0 with parameters of type IPreprocessing
F0(IPreprocessing poPreprocessing)
          F0 Constructor.
 

Uses of IPreprocessing in marf.FeatureExtraction.FFT
 

Constructors in marf.FeatureExtraction.FFT with parameters of type IPreprocessing
FFT(IPreprocessing poPreprocessing)
          FFT Constructor.
 

Uses of IPreprocessing in marf.FeatureExtraction.LPC
 

Constructors in marf.FeatureExtraction.LPC with parameters of type IPreprocessing
LPC(IPreprocessing poPreprocessing)
          LPC Constructor.
 

Uses of IPreprocessing in marf.FeatureExtraction.MinMaxAmplitudes
 

Constructors in marf.FeatureExtraction.MinMaxAmplitudes with parameters of type IPreprocessing
MinMaxAmplitudes(IPreprocessing poPreprocessing)
          MinMaxAmplitudes Constructor.
 

Uses of IPreprocessing in marf.FeatureExtraction.RandomFeatureExtraction
 

Constructors in marf.FeatureExtraction.RandomFeatureExtraction with parameters of type IPreprocessing
RandomFeatureExtraction(IPreprocessing poPreprocessing)
          RandomFeatureExtraction Constructor.
 

Uses of IPreprocessing in marf.FeatureExtraction.RawFeatureExtraction
 

Constructors in marf.FeatureExtraction.RawFeatureExtraction with parameters of type IPreprocessing
RawFeatureExtraction(IPreprocessing poPreprocessing)
           
 

Uses of IPreprocessing in marf.FeatureExtraction.Segmentation
 

Constructors in marf.FeatureExtraction.Segmentation with parameters of type IPreprocessing
Segmentation(IPreprocessing poPreprocessing)
          Segmentation Constructor.
 

Uses of IPreprocessing in marf.Preprocessing
 

Classes in marf.Preprocessing that implement IPreprocessing
 class Filter
          Filter class implements generic filtering.
 class Preprocessing
          Abstract Preprocessing Module.
 

Methods in marf.Preprocessing that return IPreprocessing
static IPreprocessing PreprocessingFactory.create(java.lang.Integer poPreprocessingMethod, Sample poSample)
          Instantiates a Preprocessing module indicated by the first parameter with the 2nd parameter as an argument.
static IPreprocessing PreprocessingFactory.create(int piPreprocessingMethod, Sample poSample)
          Instantiates a Preprocessing module indicated by the first parameter with the 2nd parameter as an argument.
 

Constructors in marf.Preprocessing with parameters of type IPreprocessing
Filter(IPreprocessing poPreprocessing)
          Pipelined constructor.
Preprocessing(IPreprocessing poPreprocessing)
          Allows chaining of preprocessing modules.
 

Uses of IPreprocessing in marf.Preprocessing.CFEFilters
 

Classes in marf.Preprocessing.CFEFilters that implement IPreprocessing
 class BandPassFilter
          Implements band-pass CFE filter based on Shivani Bhat's thesis work.
 class CFEFilter
          General Continuous-Fraction Expansion (CFE) filter types.
 

Uses of IPreprocessing in marf.Preprocessing.Dummy
 

Classes in marf.Preprocessing.Dummy that implement IPreprocessing
 class Crop
          Designed to be a general "cropper".
 class Dummy
          Implements dummy preprocessing module for testing purposes that does only normalization.
 class Raw
          Implements raw preprocessing module for testing purposes that does not do any preprocessing.
 

Constructors in marf.Preprocessing.Dummy with parameters of type IPreprocessing
Crop(IPreprocessing poPreprocessing)
           
Dummy(IPreprocessing poPreprocessing)
          Implementation of the preprocessing pipeline.
Raw(IPreprocessing poPreprocessing)
          Implementation of the preprocessing pipeline.
 

Uses of IPreprocessing in marf.Preprocessing.Endpoint
 

Classes in marf.Preprocessing.Endpoint that implement IPreprocessing
 class Endpoint
          Implements endpoint preprocessing in MARF.
 

Constructors in marf.Preprocessing.Endpoint with parameters of type IPreprocessing
Endpoint(IPreprocessing poPreprocessing)
          Preprocessing pipeline constructor.
 

Uses of IPreprocessing in marf.Preprocessing.FFTFilter
 

Classes in marf.Preprocessing.FFTFilter that implement IPreprocessing
 class BandpassFilter
          Bandpass Filter Implementation based on the FFTFilter.
 class BandStopFilter
          Band-stop Filter Implementation based on the FFTFilter.
 class FFTFilter
          FFTFilter class implements filtering using the FFT algorithm.
 class HighFrequencyBoost
          HighFrequencyBoost class implements filtering using high frequency booster on top of the FFTFilter.
 class HighPassFilter
          HighPassFilter class implements high-pass filtering the FFT Filter.
 class LowPassFilter
          LowPassFilter class implements low pass filtering the FFT Filter.
 

Constructors in marf.Preprocessing.FFTFilter with parameters of type IPreprocessing
BandpassFilter(IPreprocessing poPreprocessing)
          Implements preprocessing pipeline.
BandStopFilter(IPreprocessing poPreprocessing)
          Implements preprocessing pipeline.
FFTFilter(IPreprocessing poPreprocessing)
          Pipelined constructor.
HighFrequencyBoost(IPreprocessing poPreprocessing)
          Pipelined preprocessing constructor.
HighPassFilter(IPreprocessing poPreprocessing)
          Preprocessing pipeline constructor.
LowPassFilter(IPreprocessing poPreprocessing)
          Preprocessing pipeline constructor.
 



SourceForge Logo