class |
AbstractMultiReportWriter<T extends Report> |
Ancestor for report writers that write multiple reports into a single file.
|
class |
AbstractReportWriter<T extends Report> |
Abstract ancestor for writers that write reports to files in
various formats.
|
class |
AbstractSimpleCSVReportWriter<T extends Report> |
Abstract ancestor for writing reports in CSV format.
|
class |
AbstractSimpleJsonReportWriter<T extends Report> |
Abstract ancestor for writing reports in Json format.
|
class |
AbstractSimpleReportWriter<T extends Report> |
Abstract ancestor for writing reports in properties format.
|
class |
DeepLabCutCSVWriter |
Writes point annotations from multiple reports in DeepLabCut's CSV format.
Expects the filename to be stored in the 'File' report field.
|
class |
DefaultSimpleCSVReportWriter |
Default implementation of a report writer of the simple CSV format.
|
class |
DefaultSimpleJsonReportWriter |
Default implementation of a report writer of the simple Json 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 |
ViaAnnotationsReportWriter |
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
|