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 classAbstractScriptAncestor for OpenCV transformer scripts.classAbstractScriptedTransformerAbstract ancestor for transformers that execute external scripts.classBlurBlurs 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
classConvertTypeConverts the image according to the conversion code.classGaussianBlurApplies Gaussian blur to the image.
For more information see:
https://docs.opencv.org/4.6.0/d4/d86/group__imgproc__filter.html#gaabe8c836e97159a9193fb0b11ac52cf1
classMultiTransformerApplies the specified OpenCV transformers one after the other.classPassThroughA dummy transform that just passes the image through.classResizeResizes the image, either using absolute width/height or factors for x/y.classScriptedAn image transformer that uses any scripting handler for processing the data with a script located in the specified file.classSplitChannelsclassThresholdGenerates a binary image using the specified image.Fields in adams.data.opencv.transformer declared as AbstractOpenCVTransformer Modifier and Type Field Description protected AbstractOpenCVTransformerScripted. m_TransformerObjectthe loaded script object.protected AbstractOpenCVTransformer[]MultiTransformer. m_Transformersthe sub-transformers.Methods in adams.data.opencv.transformer that return AbstractOpenCVTransformer Modifier and Type Method Description static AbstractOpenCVTransformerAbstractOpenCVTransformer. forCommandLine(String cmdline)Instantiates the transformation from the given commandline (i.e., classname and optional options).static AbstractOpenCVTransformerAbstractOpenCVTransformer. 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 voidMultiTransformer. 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 AbstractOpenCVTransformerOpenCVTransformer. m_TransformAlgorithmthe transformer to apply to the image.Methods in adams.flow.transformer that return AbstractOpenCVTransformer Modifier and Type Method Description AbstractOpenCVTransformerOpenCVTransformer. getTransformAlgorithm()Returns the transformer in use.Methods in adams.flow.transformer with parameters of type AbstractOpenCVTransformer Modifier and Type Method Description voidOpenCVTransformer. setTransformAlgorithm(AbstractOpenCVTransformer value)Sets the transformer to use.
-