Questions tagged [bounding-box]

A Bounding Box is the smallest box that encloses a geometry. There are two common classes of Bounding Boxes that are employed: Oriented Bounding Boxes (OBB), and an Axis-Aligned Bounding Boxes (AABB). Bounding boxes are commonly employed as a cheap way to approximate more complex geometries in a range of applications, including collision detection.

A Bounding Box is the smallest box that encloses a geometry. There are two common classes of Bounding Boxes that are employed: Oriented Bounding Boxes (OBB) and an Axis-Aligned Bounding Boxes (AABB). Bounding boxes are commonly employed as a cheap way to approximate more complex geometries in a range of applications, including collision detection.

A minimum Bounding Box can also be referred to as the minimum bounding or minimum enclosing box.

Reference Books

External References:

Related Tags:

1096 questions
-1
votes
1 answer

How do I show the bounding box of a mapboxgl object with 4 corner coordinates?

I want to show a physical bounding box on my map. Suppose I have four examples points as follows: var southWest = new mapboxgl.LngLat(-73.9876, 40.7661); var northWest = new mapboxgl.LngLat(-73.9397, 41.8002); var northEast = new…
325
  • 594
  • 8
  • 21
-1
votes
1 answer

Convert bounding box format

I want to use P-DESTRE dataset with retinaNet model But i have a problem in bonding box format since the dataset bounding box format is: x, y, h, w (Top left column, top left row, height, width) Where is written on that model bounding box format…
-1
votes
1 answer

Is there any in-browser online tool for marking bounded boxes of objects in images for training neural networks?

I want to create my own dataset for YOLOv3 Object Detection. It looks like there is a huge set of offline tools for marking bounded boxes, for example: Yolo_mark, Microsoft VoTT, LabelImg. Is there any zero-config online tool, which will work right…
Petr Tripolsky
  • 1,419
  • 15
  • 23
-1
votes
1 answer

My implementation of mser is not detecting text area correctly, what should i do?

I am a beginner in OpenCV, and am trying to extract numbers from a dataset of images and use the extracted numbers as a dataset for NN. For this, I'm using mser's bounding boxes and then cropping the image in size of the bounding box. but mser is…
-1
votes
1 answer

Trace the path of vehicles in video opencv python

I want to trace vehicles using Python path as shown in the video I have detected bounding box and have centroid location for every car for each frame. Currently you can see my work on this video I just don't understand how to keep the plot of path…
hafizas101
  • 11
  • 3
-1
votes
1 answer

Webots - Check if point is inside the object

I am using an algorithm to generate points my robot is supposed to explore. To do this, these points have to be generated such that none of them are within the area that obstacles occupy. How can that be done by using Webots? I cannot use collision…
-1
votes
1 answer

Boundaries for background

I am using as3 and try to drag the background within the screen. What am I doing wrong? Here is my code: bg.startDrag(false, new Rectangle(-bg.width + stage.stageWidth, stage.stageHeight, bg.width - stage.stageWidth, bg.height -…
-1
votes
2 answers

IoU. How can I calculate the true positive rate for an object detection algorithm, where I can have multiple objects per image?

How can I calculate the false positive rate for an object detection algorithm, where I can have multiple objects per image? In my data, a given image may have many objects. I am counting a predicted box as a true positive if its IOU with a truth box…
-1
votes
1 answer

Getting Bounding Boxes with highest confidence during prediction

I am using TensorFlow Object Recognition API. Normally, what developers do is to setup a training pipeline, provide some checkpoints or tfrecords to start the training while monitoring the performances on TensorBoard. This is what I did and right…
-1
votes
2 answers

Python: Showing every Object of an image in its own window

I've written some code, to crop an object (in this case the Data Matrix Code) from an image: import numpy as np import cv2 image = cv2.imread("datamatrixc.png") img_gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) img_height, img_width =…
Ramón Wilhelm
  • 967
  • 2
  • 18
  • 39
-1
votes
2 answers

Fittest polygon bounding objects in an image

Is there any method to create a polygon(not a rectangle) around an object in an image for object recognition. Please refer the following images: the result I am looking for and the original image . I am not looking for bounding rectangles like…
-1
votes
1 answer

Get bounding box with Google Maps Api Js

How can I get the bounding box of a polygon in google maps api? With open layers if I could achieve it, but not with google maps. I need to get the boundig box to be able to manipulate an intersection with JSTS by increasing or reducing the size of…
raintrooper
  • 119
  • 2
  • 11
-1
votes
1 answer

tf.image.sample_distorted_bounding_box ValueError

I am trying to augment existing labeled bounding boxed image for making more object detection training data using the function tf.image.sample_distorted_bounding_box but I keep getting these errors found here. I'm pretty sure my bounding box is set…
-1
votes
1 answer

OpenLayers 3 Shows white space while dragging/panning

I am right now using Ol3 to display static image(like http://openlayers.org/en/latest/examples/static-image.html) . Although when I am zoomed in and start panning/dragging i can see white space as seen in example. I don't want to see that. Is it…
-1
votes
1 answer

D3 bounding box in v4

How can we do something like this in version 4 of d3: http://jsfiddle.net/d3wxP/1/ because some translate or scale does not exist: function move() { var t = d3.event.translate, s = d3.event.scale; t[0] = Math.max(0, Math.min(t[0], width -…