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

SetBoundings under Nutiteq doesn't work properly

I'm trying to show a Polygon under Nutiteq in a properly Bounding Box but I get something like this. and what I want is My code is the following private void setClipBounds(Intent intent, MapView mapView) { ArrayList> limits =…
Gödel77
  • 839
  • 3
  • 15
  • 27
-1
votes
1 answer

How to draw an AABB bounding box in simple c++/opengl?

I don't know how to draw a bounding box around my 3D object using visual C++/Opengl! I have calculated min and max value of my obj, but now what do I do!? Update to my above post: Have figured out how to draw the Bounding box! How can I align it…
afr12
  • 21
  • 1
  • 3
-1
votes
1 answer

How to Draw BoundingBox or Tag Objects Which Has Less Area Than Others

In my image I have 5 Objects in black-white form. Some are respectively small, some are bigger. So what i am trying to do is drawing a BoundingBox or tag the objects which has less area than others (ex. under 10pixels/area) . I couldn't make this…
semihunaldi
  • 44
  • 1
  • 1
  • 6
-1
votes
1 answer

XNA 4.0 3D Collision

I've been trying to work on a 3d forward-runner game (like temple run) in XNA 4.0. I'm hitting a bit of a brick wall, so any help would be much appreciated! Currently, I'm using my own method for collision detection, which requires the dimensions…
Jack
  • 472
  • 6
  • 13
-2
votes
0 answers

How do I create bounding box for polygons with more than 4 vertexes in python? And how do I do it for circles?

I am working with LAS files containing LiDAR point cloud data and a shapefile defining polygons. The goal is to compare the classification values of points within the polygons between two LAS files and report any changes. I attempted to analyze LAS…
NK_96
  • 1
  • 1
-2
votes
1 answer

Automatic image labelling for custom training YOLOv5

There are manual tools like Makesense.ai to create the labelled data for custom training YOLO, but is there any method for automatic labelling of multiple objects in an image so that the image labelling process would be faster?
-2
votes
1 answer

How to find bounding box data for all regions in the world?

I am looking for bounding box data for individual states which exist within countries. For eg, for India - states like Andhra Pradesh, Karnataka etc or for Norway - bbox for Akershus, Aust-Agder etc. One approach I know is download extracts from…
vepzfe
  • 4,217
  • 5
  • 26
  • 46
-2
votes
2 answers

Getting the best fit match of boxes of varying dimensions in a bounding box

I have a problem wherein I have to ensure optimal packing in a 2D rectangular frame of smaller 2D rectangular/square boxes. I read that this may be termed as bin-packing problem or may also be considered as best fit bounding-box problem, where we…
Cyberpks
  • 1,401
  • 6
  • 21
  • 51
-2
votes
1 answer

TypeError: an integer is required (got type tuple)?

This code was working few days ago. But now getting typeerror CODE: import cv2 import numpy as np import pytesseract from langdetect import detect_langs from pytesseract import * from flask import Flask,request import requests try: from PIL…
Sai Krishnadas
  • 2,863
  • 9
  • 36
  • 69
-2
votes
1 answer

How can I merge multiple buffered image obtained from bounding box in one image file side by side?

I am reading tiff file and extracting bounding box images now based on confidence value of each character I want to separate some images and consolidate to one image file for training dataset.
Ankit
  • 1
  • 2
-2
votes
1 answer

Given known origin and destination latitude/longitude, how can I create its bounding box?

Origin Latitude/longitude: 39.50000000,-84.78000000 Destination Latitude/longitude: 28.42000000,-81.31000000 How can I draw its bounding box? The correct bounding box is: +-----1 | / | | / | | / | 2-----+ I'm intrested to find 1 and 2…
Parveen Kumar
  • 397
  • 1
  • 5
  • 12
-2
votes
1 answer

Mapping bounding box to the original image in Matlab

i have a real time skin detection algorithm where it gives me a bounding box around the skin region with rectangle('Position',bb,'EdgeColor','r','LineWidth',2) from an original image. I wish to use the code to first detect the skin region from the…
chonglim
  • 33
  • 5
-2
votes
2 answers

How to segmentation object c#

I used this code for segmentation, I'm trying to detect pixels one by one because my object is a binary, not a grayscale. when i run the program, it draws 2 object. The first object is successfully drawn (object still has a black color and a red…
-2
votes
2 answers

Matlab: How to find a point in a bounding box

I have an array of points or locations that are scattered throughout a big matrix, and I have a small bounding box inside the matrix. I need a way to check if the points in the array are within the bounding box. Thanks for your…
FireSky
  • 181
  • 4
  • 17
-3
votes
2 answers

How to put bounding box around the detected human outline

Here is the python code I have written :- import cv2 import argparse ap = argparse.ArgumentParser() ap.add_argument("-v", "--video", help = "path to the (optional) video file") args = vars(ap.parse_args()) if not args.get("video", False): cap…
Ritwik
  • 1
  • 1
  • 4
1 2 3
73
74