Skip to content
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

Merged
merged 8 commits into from
Apr 2, 2025

Conversation

kharijarrett
Copy link
Member

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.

@viambot viambot added the safe to test This pull request is marked safe to test from a trusted zone label Mar 31, 2025
Copy link
Member

@penguinland penguinland left a 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
Copy link
Member

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.

@viambot viambot added safe to test This pull request is marked safe to test from a trusted zone and removed safe to test This pull request is marked safe to test from a trusted zone labels Apr 2, 2025
@kharijarrett
Copy link
Member Author

Tested on Mac with Python SDK script and am able to get all the normalized box values from the mlvision vision service.

@kharijarrett kharijarrett merged commit f178cd6 into viamrobotics:main Apr 2, 2025
16 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
safe to test This pull request is marked safe to test from a trusted zone
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants