Uses of Class
adams.data.boofcv.transformer.AbstractBoofCVTransformer
-
Packages that use AbstractBoofCVTransformer Package Description adams.data.boofcv.features adams.data.boofcv.transformer adams.flow.transformer -
-
Uses of AbstractBoofCVTransformer in adams.data.boofcv.features
Fields in adams.data.boofcv.features declared as AbstractBoofCVTransformer Modifier and Type Field Description protected AbstractBoofCVTransformer
FilteredBoofCVFeatureGenerator. m_Filter
the filter to use.Methods in adams.data.boofcv.features that return AbstractBoofCVTransformer Modifier and Type Method Description AbstractBoofCVTransformer
FilteredBoofCVFeatureGenerator. getFilter()
Returns the filter in use.Methods in adams.data.boofcv.features with parameters of type AbstractBoofCVTransformer Modifier and Type Method Description void
FilteredBoofCVFeatureGenerator. setFilter(AbstractBoofCVTransformer value)
Sets the filter to use. -
Uses of AbstractBoofCVTransformer in adams.data.boofcv.transformer
Subclasses of AbstractBoofCVTransformer in adams.data.boofcv.transformer Modifier and Type Class Description class
AbstractScript
Ancestor for BoofCV transformer scripts.class
AbstractScriptedTransformer
Abstract ancestor for transformers that execute external scripts.class
Binary
Creates a binary image.class
BinaryContours
Uses the BoofCV binary contours algorithm to detect edges in a binary image.class
CannyEdgeDetection
Performs edge detection using the Canny Edge detection algorithm.
For more information on the algorithm, see:
WikiPedia.class
Dilate4
Applies the BoofCV dilate4 algorithm to a binary image.class
Dilate8
Applies the BoofCV dilate8 algorithm to a binary image.class
Erode4
Applies the BoofCV erode4 algorithm to a binary image.class
Erode8
Applies the BoofCV erode8 algorithm to a binary image.class
Gray8
Transforms the image into an 8-bit gray image.class
ImageType
Turns an image into the specified type of image.class
Inverter
Takes a binary image in the BoofCV Unsigned Int 8 format and inverts each pixel.class
MultiTransformer
Applies the specified BoofCV transformers one after the other.class
PassThrough
A dummy transform that just passes the image through.class
Scripted
An image transformer that uses any scripting handler for processing the data with a script located in the specified file.class
Sharpen4
Applies a Laplacian-4 based sharpen filter to the image.class
Sharpen8
Applies a Laplacian-8 based sharpen filter to the image.class
SuperPixels
Takes an image and divides it into super pixels.
For more information see:
http://boofcv.org/index.php?title=Tutorial_Image_Segmentation
class
WaveletDenoise
Removes noise using wavelet transformation.Fields in adams.data.boofcv.transformer declared as AbstractBoofCVTransformer Modifier and Type Field Description protected AbstractBoofCVTransformer
Scripted. m_TransformerObject
the loaded script object.protected AbstractBoofCVTransformer[]
MultiTransformer. m_Transformers
the sub-transformers.Methods in adams.data.boofcv.transformer that return AbstractBoofCVTransformer Modifier and Type Method Description static AbstractBoofCVTransformer
AbstractBoofCVTransformer. forCommandLine(String cmdline)
Instantiates the transformation from the given commandline (i.e., classname and optional options).static AbstractBoofCVTransformer
AbstractBoofCVTransformer. forName(String classname, String[] options)
Instantiates the transformation with the given options.AbstractBoofCVTransformer[]
MultiTransformer. getTransformers()
Returns the transformers in use.Methods in adams.data.boofcv.transformer with parameters of type AbstractBoofCVTransformer Modifier and Type Method Description void
MultiTransformer. setTransformers(AbstractBoofCVTransformer[] value)
Sets the transformers to use. -
Uses of AbstractBoofCVTransformer in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractBoofCVTransformer Modifier and Type Field Description protected AbstractBoofCVTransformer
BoofCVTransformer. m_TransformAlgorithm
the transformer to apply to the image.Methods in adams.flow.transformer that return AbstractBoofCVTransformer Modifier and Type Method Description AbstractBoofCVTransformer
BoofCVTransformer. getTransformAlgorithm()
Returns the transformer in use.Methods in adams.flow.transformer with parameters of type AbstractBoofCVTransformer Modifier and Type Method Description void
BoofCVTransformer. setTransformAlgorithm(AbstractBoofCVTransformer value)
Sets the transformer to use.
-