Uses of Interface
adams.data.io.output.StringReportWriter
-
Packages that use StringReportWriter Package Description adams.data.conversion adams.data.io.output -
-
Uses of StringReportWriter in adams.data.conversion
Fields in adams.data.conversion declared as StringReportWriter Modifier and Type Field Description protected StringReportWriter
ReportToString. m_Writer
the report writer to use.Methods in adams.data.conversion that return StringReportWriter Modifier and Type Method Description StringReportWriter
ReportToString. getWriter()
Returns the writer in use.Methods in adams.data.conversion with parameters of type StringReportWriter Modifier and Type Method Description void
ReportToString. setWriter(StringReportWriter value)
Sets the writer to use. -
Uses of StringReportWriter in adams.data.io.output
Classes in adams.data.io.output that implement StringReportWriter Modifier and Type Class Description class
AbstractSimpleReportWriter<T extends Report>
Abstract ancestor for writing reports in properties format.class
DefaultSimpleReportWriter
Default implementation of a report writer of the simple format.class
ObjectLocationsSpreadSheetWriter
class
OpexObjectLocationsWriter
Writes polygon annotations in VGG Image Annotator JSON format.
For more information, see:
http://www.robots.ox.ac.uk/~vgg/software/via/
class
YoloAnnotationsReportWriter
Writes text files with YOLO object annotations, one object definition per line:
BBox format:
- format: <object-class> <x> <y> <width> <height>
- object-class: 0-based index
- x/y: normalized center of annotation
- width/height: normalized width/height
- Normalization uses image width/height
Polygon format:
- format: <object-class> <x0> <y0> <x1> <y1>...
- object-class: 0-based index
- x/y: normalized polygon point
-