Uses of Class
adams.data.opencv.transformer.AbstractOpenCVTransformer
-
Packages that use AbstractOpenCVTransformer Package Description adams.data.opencv.transformer adams.flow.transformer -
-
Uses of AbstractOpenCVTransformer in adams.data.opencv.transformer
Subclasses of AbstractOpenCVTransformer in adams.data.opencv.transformer Modifier and Type Class Description class
AbstractScript
Ancestor for OpenCV transformer scripts.class
AbstractScriptedTransformer
Abstract ancestor for transformers that execute external scripts.class
Blur
Blurs the image using the normalized box filter.
For more information see:
https://docs.opencv.org/4.6.0/d4/d86/group__imgproc__filter.html#ga8c45db9afe636703801b0b2e440fce37
class
ConvertType
Converts the image according to the conversion code.class
GaussianBlur
Applies Gaussian blur to the image.
For more information see:
https://docs.opencv.org/4.6.0/d4/d86/group__imgproc__filter.html#gaabe8c836e97159a9193fb0b11ac52cf1
class
MultiTransformer
Applies the specified OpenCV transformers one after the other.class
PassThrough
A dummy transform that just passes the image through.class
Resize
Resizes the image, either using absolute width/height or factors for x/y.class
Scripted
An image transformer that uses any scripting handler for processing the data with a script located in the specified file.class
SplitChannels
class
Threshold
Generates a binary image using the specified image.Fields in adams.data.opencv.transformer declared as AbstractOpenCVTransformer Modifier and Type Field Description protected AbstractOpenCVTransformer
Scripted. m_TransformerObject
the loaded script object.protected AbstractOpenCVTransformer[]
MultiTransformer. m_Transformers
the sub-transformers.Methods in adams.data.opencv.transformer that return AbstractOpenCVTransformer Modifier and Type Method Description static AbstractOpenCVTransformer
AbstractOpenCVTransformer. forCommandLine(String cmdline)
Instantiates the transformation from the given commandline (i.e., classname and optional options).static AbstractOpenCVTransformer
AbstractOpenCVTransformer. forName(String classname, String[] options)
Instantiates the transformation with the given options.AbstractOpenCVTransformer[]
MultiTransformer. getTransformers()
Returns the transformers in use.Methods in adams.data.opencv.transformer with parameters of type AbstractOpenCVTransformer Modifier and Type Method Description void
MultiTransformer. setTransformers(AbstractOpenCVTransformer[] value)
Sets the transformers to use. -
Uses of AbstractOpenCVTransformer in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractOpenCVTransformer Modifier and Type Field Description protected AbstractOpenCVTransformer
OpenCVTransformer. m_TransformAlgorithm
the transformer to apply to the image.Methods in adams.flow.transformer that return AbstractOpenCVTransformer Modifier and Type Method Description AbstractOpenCVTransformer
OpenCVTransformer. getTransformAlgorithm()
Returns the transformer in use.Methods in adams.flow.transformer with parameters of type AbstractOpenCVTransformer Modifier and Type Method Description void
OpenCVTransformer. setTransformAlgorithm(AbstractOpenCVTransformer value)
Sets the transformer to use.
-