Striveworks/valor

ENH: Object Detection examples in dict format

Closed this issue · 0 comments

Feature Type

  • Adding new functionality to valor

  • Changing existing functionality in valor

  • Removing existing functionality in valor

Problem Description

Returning a vague tuple defining bounding box extrema leads to downstream confusion.

Feature Description

Change output (xmin, xmax, ymin, ymax) to

{
    "xmin": xmin,
    "xmax": xmax,
    "ymin": ymin,
    "ymax": ymax,
}

Additional Context

No response