Uses of Class
adams.data.io.output.AbstractReportWriter
-
Packages that use AbstractReportWriter Package Description adams.data.io.output adams.flow.transformer adams.gui.chooser adams.gui.tools.previewbrowser -
-
Uses of AbstractReportWriter in adams.data.io.output
Subclasses of AbstractReportWriter in adams.data.io.output Modifier and Type Class Description class
AbstractMultiReportWriter<T extends Report>
Ancestor for report writers that write multiple reports into a single file.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
Methods in adams.data.io.output that return AbstractReportWriter Modifier and Type Method Description static AbstractReportWriter
AbstractReportWriter. forCommandLine(String cmdline)
Instantiates the chromatogram writer from the given commandline (i.e., classname and optional options).static AbstractReportWriter
AbstractReportWriter. forName(String classname, String[] options)
Instantiates the chromatogram writer with the given options.AbstractReportWriter
AbstractReportWriter. shallowCopy()
Returns a shallow copy of itself, i.e., based on the commandline options.AbstractReportWriter
AbstractReportWriter. shallowCopy(boolean expand)
Returns a shallow copy of itself, i.e., based on the commandline options. -
Uses of AbstractReportWriter in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractReportWriter Modifier and Type Field Description protected AbstractReportWriter<T>
AbstractReportFileWriter. m_Writer
the writer to use.Methods in adams.flow.transformer that return AbstractReportWriter Modifier and Type Method Description protected abstract AbstractReportWriter<T>
AbstractReportFileWriter. getDefaultWriter()
Returns the default writer.protected AbstractReportWriter<Report>
ReportFileWriter. getDefaultWriter()
Returns the default writer.AbstractReportWriter
AbstractReportFileWriter. getWriter()
Returns the writer in use.Methods in adams.flow.transformer with parameters of type AbstractReportWriter Modifier and Type Method Description void
AbstractReportFileWriter. setWriter(AbstractReportWriter value)
Sets the writer to use. -
Uses of AbstractReportWriter in adams.gui.chooser
Classes in adams.gui.chooser with type parameters of type AbstractReportWriter Modifier and Type Class Description class
AbstractReportFileChooser<T extends Report,R extends AbstractReportReader,W extends AbstractReportWriter>
A specialized JFileChooser that lists all available file Readers and Writers for reports.Methods in adams.gui.chooser that return AbstractReportWriter Modifier and Type Method Description protected AbstractReportWriter<Report>
DefaultReportFileChooser. getDefaultWriter()
Returns the default writer. -
Uses of AbstractReportWriter in adams.gui.tools.previewbrowser
Fields in adams.gui.tools.previewbrowser declared as AbstractReportWriter Modifier and Type Field Description protected AbstractReportWriter
AnnotateImage. m_Writer
the report writer for updating the file.Methods in adams.gui.tools.previewbrowser that return AbstractReportWriter Modifier and Type Method Description AbstractReportWriter
AnnotateImage. getWriter()
Returns the report writer to use for updating the report on disk.Methods in adams.gui.tools.previewbrowser with parameters of type AbstractReportWriter Modifier and Type Method Description void
AnnotateImage. setWriter(AbstractReportWriter value)
Sets the report writer to use for updating the report on disk.
-