Uses of Interface
adams.data.io.input.StringReportReader
-
Packages that use StringReportReader Package Description adams.data.conversion adams.data.io.input -
-
Uses of StringReportReader in adams.data.conversion
Fields in adams.data.conversion declared as StringReportReader Modifier and Type Field Description protected StringReportReader
StringToReport. m_Reader
the report reader to use.Methods in adams.data.conversion that return StringReportReader Modifier and Type Method Description StringReportReader
StringToReport. getReader()
Returns the reader in use.Methods in adams.data.conversion with parameters of type StringReportReader Modifier and Type Method Description void
StringToReport. setReader(StringReportReader value)
Sets the reader to use. -
Uses of StringReportReader in adams.data.io.input
Classes in adams.data.io.input that implement StringReportReader Modifier and Type Class Description class
AbstractSimpleReportReader<T extends Report>
Abstract ancestor for reports to be written in properties format.class
DefaultSimpleReportReader
Default implementation of a report reader of the simple format.class
ObjectLocationsSpreadSheetReader
Reads object locations from a spreadsheet into a report.
Top/left column is required.
Either right/bottom or width/height need to be supplied.
In addition, polygon coordinates (X and Y coordinates as comma-separated lists in two separate columns) can be read as well.
If the coordinates/dimensions represent normalized ones (ie 0-1), then specify the width/height of the image to relate them back to actual pixel-based sizes.class
OpexObjectLocationsReader
Reads object locations from JSON generated by the opex library.
See more:
https://github.com/WaikatoLink2020/objdet-predictions-exchange-format
class
YoloAnnotationsReportReader
Reads 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
-