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 StringReportWriterReportToString. m_Writerthe report writer to use.Methods in adams.data.conversion that return StringReportWriter Modifier and Type Method Description StringReportWriterReportToString. getWriter()Returns the writer in use.Methods in adams.data.conversion with parameters of type StringReportWriter Modifier and Type Method Description voidReportToString. 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 classAbstractSimpleReportWriter<T extends Report>Abstract ancestor for writing reports in properties format.classDefaultSimpleReportWriterDefault implementation of a report writer of the simple format.classObjectLocationsSpreadSheetWriter
classOpexObjectLocationsWriterWrites polygon annotations in VGG Image Annotator JSON format.
For more information, see:
http://www.robots.ox.ac.uk/~vgg/software/via/
classYoloAnnotationsReportWriterWrites 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
-