|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IFilter
An interface all filters must comply with.
$Id: IFilter.java,v 1.5 2006/03/20 00:34:10 mokhov Exp $
Field Summary | |
---|---|
static int |
FILTER_DIMENSIONALITY_1D
Indicates 1-D filter. |
static int |
FILTER_DIMENSIONALITY_2D
Indicates 2-D filter. |
static int |
FILTER_DIMENSIONALITY_3D
Indicates 3-D filter. |
static java.lang.String |
MARF_INTERFACE_CODE_REVISION
Interface source code revision. |
Method Summary | |
---|---|
boolean |
filter(double[][][] padSample,
double[][][] padFiltered)
Applies 3D filtering to the sample array and buffers the filtered data. |
boolean |
filter(double[][] padSample,
double[][] padFiltered)
Applies 2D filtering to the sample array and buffers the filtered data. |
boolean |
filter(double[] padSample,
double[] padFiltered)
Applies filtering to the sample array and buffers the filtered data. |
Field Detail |
---|
static final int FILTER_DIMENSIONALITY_1D
static final int FILTER_DIMENSIONALITY_2D
static final int FILTER_DIMENSIONALITY_3D
static final java.lang.String MARF_INTERFACE_CODE_REVISION
Method Detail |
---|
boolean filter(double[] padSample, double[] padFiltered) throws PreprocessingException
padSample
- original sample to apply filtering to; should not be alteredpadFiltered
- buffer for filtered data
true if filtering was successful and/or there were any changes
- Throws:
PreprocessingException
- if any error happened during filtering
boolean filter(double[][] padSample, double[][] padFiltered) throws PreprocessingException
padSample
- original sample to apply filtering to; should not be alteredpadFiltered
- buffer for filtered data
true if filtering was successful and/or there were any changes
- Throws:
PreprocessingException
- if any error happened during filtering- Since:
- 0.3.0.6
boolean filter(double[][][] padSample, double[][][] padFiltered) throws PreprocessingException
padSample
- original sample to apply filtering to; should not be alteredpadFiltered
- buffer for filtered data
true if filtering was successful and/or there were any changes
- Throws:
PreprocessingException
- if any error happened during filtering- Since:
- 0.3.0.6
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |