-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RSDK-10142 - Add relative (normalized) bounding boxes to RDK #4883
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! I think this should be treated as a breaking change, and beyond that all my feedback is either minor stuff or non-actionable.
// NewNormalizedBoundingBox creates a normalized bounding box from the image bounds and the bounding box. | ||
func NewNormalizedBoundingBox(imageBounds, boundingBox image.Rectangle) []float64 { | ||
if imageBounds.Max.X == 0 || imageBounds.Max.Y == 0 { | ||
return nil |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I appreciate the caution here, but can't think of a situation in which we'd hit this line. Is it worth logging a giant warning about how we've encountered impossible data? Maybe not; just a thought.
Tested on Mac with Python SDK script and am able to get all the normalized box values from the mlvision vision service. |
Here we're adding normalized bounding boxes to RDK by incorporating it into our idea of a "Detection". I've edited the Detection constructor to take in the image bounds so the calculations can happen. See scope: (https://docs.google.com/document/d/1cezhhCrPOi6ANjo7laOZ_CBzvZxi7Ea4zx3qgrolwks/edit?tab=t.0#heading=h.tcicyojyqi6c)
I've also included a "no img bounds" constructor. Server and client side code were updated and tests were updated as well to include/test the new changes.