Uses of Class
adams.flow.transformer.draw.AbstractDrawOperation
-
Packages that use AbstractDrawOperation Package Description adams.data.barcode.encode adams.flow.transformer adams.flow.transformer.draw -
-
Uses of AbstractDrawOperation in adams.data.barcode.encode
Subclasses of AbstractDrawOperation in adams.data.barcode.encode Modifier and Type Class Description class
AbstractBarcodeEncoder
Ancestor for barcode encoders, i.e., classes that generated barcode images.class
EAN13
Draws an EAN13 barcode at a specified location and size.Digits must be 13 characters long.class
PassThrough
* Dummy barcode type, draws nothing.class
QRCode
Draws a QR code at a specified location and size.class
UPCA
Draws a UPCA barcode at a specified location and size.Digits must be 11 (checksum gets calculated) or 12 (incl. -
Uses of AbstractDrawOperation in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractDrawOperation Modifier and Type Field Description protected AbstractDrawOperation
Draw. m_Operation
the draw operation.Methods in adams.flow.transformer that return AbstractDrawOperation Modifier and Type Method Description AbstractDrawOperation
Draw. getOperation()
Returns the X position of the pixel.Methods in adams.flow.transformer with parameters of type AbstractDrawOperation Modifier and Type Method Description void
Draw. setOperation(AbstractDrawOperation value)
Sets the operation to perform. -
Uses of AbstractDrawOperation in adams.flow.transformer.draw
Subclasses of AbstractDrawOperation in adams.flow.transformer.draw Modifier and Type Class Description class
AbstractColorDrawOperation
Ancestor for operations that use a color.class
AbstractColorStrokeDrawOperation
Ancestor for operations that use a colored, variable stroke.class
AbstractDrawObjectsFromReport
Ancestor for overlays that use object locations from a report.class
AnnotationsAndPredictions
Overlays the image with annotations and predictions from storage with their respective draw operations.class
Barcode
* Draws a barcode with the specified color and dimensions at the given location.class
FloodFill
Performs a flood-fill starting at the given position.class
Image
Draws the image obtained from a callable actor at the specified location.class
Line
Draws a line between the given start and end coordinates.class
ObjectAnnotationsFromReport
Overlays object annotations from the report.class
ObjectCentersFromReport
Displays the centers of objects in the image, using data from the attached report.
Suffixes:
.x
.y
.width
.height
Optionally, if type information is available per object, the locations can be displayed in distinct colors per type.class
ObjectLocationsFromReport
Displays the locations of objects in the image, using data from the attached report.
Suffixes:
.x
.y
.width
.height
Optionally, if type information is available per object, the locations can be displayed in distinct colors per type.class
Oval
Draws an oval with the specified color and dimensions at the given location.class
Pixel
Draws a pixel with the specified color at the specified location.class
Rectangle
Draws a rectangle with the specified color and dimensions at the given location.class
Text
Draws text with a specified font at the given location.Fields in adams.flow.transformer.draw declared as AbstractDrawOperation Modifier and Type Field Description protected AbstractDrawOperation
AnnotationsAndPredictions. m_DrawAnnotations
the draw operation to use for the annotations.protected AbstractDrawOperation
AnnotationsAndPredictions. m_DrawPredictions
the draw operation to use for the predictions.Methods in adams.flow.transformer.draw that return AbstractDrawOperation Modifier and Type Method Description protected AbstractDrawOperation
AnnotationsAndPredictions. getDefaultDrawAnnotations()
Returns the default draw operation setup for the annotations.protected AbstractDrawOperation
AnnotationsAndPredictions. getDefaultDrawPredictions()
Returns the default draw operation setup for the predictions.AbstractDrawOperation
AnnotationsAndPredictions. getDrawAnnotations()
Returns the draw operation for the annotations.AbstractDrawOperation
AnnotationsAndPredictions. getDrawPredictions()
Returns the draw operation for the predictions.Methods in adams.flow.transformer.draw with parameters of type AbstractDrawOperation Modifier and Type Method Description void
AnnotationsAndPredictions. setDrawAnnotations(AbstractDrawOperation value)
Sets the draw operation for the annotations.void
AnnotationsAndPredictions. setDrawPredictions(AbstractDrawOperation value)
Sets the draw operation for the predictions.
-