Uses of Class
adams.data.boofcv.features.AbstractBoofCVFeatureGenerator
-
Packages that use AbstractBoofCVFeatureGenerator Package Description adams.data.boofcv.features adams.flow.transformer -
-
Uses of AbstractBoofCVFeatureGenerator in adams.data.boofcv.features
Subclasses of AbstractBoofCVFeatureGenerator in adams.data.boofcv.features Modifier and Type Class Description class
AbstractScript
Ancestor for BoofCV feature generator scripts.class
AbstractScriptedFeatureGenerator
Abstract ancestor for BoofCV feature generator that execute external scripts.class
FilteredBoofCVFeatureGenerator
Applies the filter (an image transformer) to the image first before generating the features from the transformed images.class
Histogram
Generates a histogram from the image.class
MultiBoofCVFeatureGenerator
Applies multiple generators to the same image and merges the generate a feature vectors side-by-side.class
Otsu
Computes the variance based threshold using Otsu's method from an input image (gray scale; boofcv.struct.image.GrayU8).
For more information see:
WikiPedia.class
Pixels
Gets all the pixels of the image.class
Scripted
A feature generator that uses any scripting handler for processing the data with a script located in the specified file.Fields in adams.data.boofcv.features declared as AbstractBoofCVFeatureGenerator Modifier and Type Field Description protected AbstractBoofCVFeatureGenerator
Scripted. m_FeatureGeneratorObject
the loaded script object.protected AbstractBoofCVFeatureGenerator
FilteredBoofCVFeatureGenerator. m_Generator
the base feature generator.protected AbstractBoofCVFeatureGenerator[]
MultiBoofCVFeatureGenerator. m_SubGenerators
the flatteners to use.Methods in adams.data.boofcv.features that return AbstractBoofCVFeatureGenerator Modifier and Type Method Description AbstractBoofCVFeatureGenerator
FilteredBoofCVFeatureGenerator. getGenerator()
Returns the feature generator to use on the filtered data.AbstractBoofCVFeatureGenerator[]
MultiBoofCVFeatureGenerator. getSubGenerators()
Returns the flatteners to use.Methods in adams.data.boofcv.features with parameters of type AbstractBoofCVFeatureGenerator Modifier and Type Method Description void
FilteredBoofCVFeatureGenerator. setGenerator(AbstractBoofCVFeatureGenerator value)
Sets the feature generator to use on the filtered data.void
MultiBoofCVFeatureGenerator. setSubGenerators(AbstractBoofCVFeatureGenerator[] value)
Sets the flatteners to use. -
Uses of AbstractBoofCVFeatureGenerator in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractBoofCVFeatureGenerator Modifier and Type Field Description protected AbstractBoofCVFeatureGenerator
BoofCVFeatureGenerator. m_ActualAlgorithm
the actual algorithm to apply to the image.protected AbstractBoofCVFeatureGenerator
BoofCVFeatureGenerator. m_Algorithm
the algorithm to apply to the image.Methods in adams.flow.transformer that return AbstractBoofCVFeatureGenerator Modifier and Type Method Description AbstractBoofCVFeatureGenerator
BoofCVFeatureGenerator. getAlgorithm()
Returns the algorithm in use.Methods in adams.flow.transformer with parameters of type AbstractBoofCVFeatureGenerator Modifier and Type Method Description void
BoofCVFeatureGenerator. setAlgorithm(AbstractBoofCVFeatureGenerator value)
Sets the algorithm to use.
-