question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Batched box scale

See original GitHub issue

🚀 The feature

Frequent utility in postprocessing box detections:

def batched_box_scale(boxes, image_shape, target_image_shape):
  fx = target_image_shape[..., -1] / image_shape[...., -1]
  fy = target_image_shape[..., -2] / image_shape[..., -2]
  return boxes * torch.stack([fx, fy, fx, fy], dim = -1).to(boxes.device)

Motivation, pitch

This is a frequently needed utility to bring back computed detections to a common / original coordinate frame.

cc @vfdev-5 @datumbox

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
fmassacommented, Nov 4, 2021

I meant this will be handled by

# boxes is a custom object that is defined in #4721
boxes : BBox

# then the transforms will know how to resize them
T.resize(boxes, (50, 20))
0reactions
fmassacommented, Nov 5, 2021

@vadimkantorov new abstractions with transforms are in #4861

I hope they will be useful and would encourage users to use them

Read more comments on GitHub >

github_iconTop Results From Across the Web

How we can determine concrete batching box size? - Quora
Cement volume = 1x1.55x0.3334302/5.5 = 0.00939 M3 · Sand volume = 1.5x1.55x0.3334302/5.5= 0.01409 m3 · Aggregate volume = 3x1.55x0.3334302/5.5 = 0.02818 M3 ·...
Read more >
Weighing & Batching | APEC USA
Our BatchBox batching control system is an industry-specific computer based batch control system, integrating easily with most brands of scale instruments.
Read more >
Boxes - Introduction to Scale
Given a box entry in params.geometries, Scale will annotate your image or video with boxes and return the position and dimensions of the...
Read more >
Batching Scale Systems — Vessel Weighing Systems
Load Cell Central ships hundreds of vessel / hopper / silo batching scales and weighing systems to customers around the world each year....
Read more >
Batching Scales | S-E-G Industrial Weighing
Batched quantities must be accurately measured. Exactly right, every time. The industry demands accurate, reliable systems.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found