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 ...
0
votes
0answers
15 views
how i can create boundingbox area using mapbox api
hi i m new in iphone development some can help me to cache some area using mapbox framework
here is the guideline for this
You want to use the RMTileCacheBackgroundDelegate protocol for this. Just ...
1
vote
1answer
38 views
get the position / coordinates and size of text displayed on the screen in TKINTER
We are about to conduct an eye tracking study where we will try to evaluate gaze on specific words displayed on the screen.
I have many .txt files that need to be converted to images and displayed on ...
1
vote
0answers
30 views
Checking collision between Rectangle and Shape
In my game the player uses a Rectangle for his bounding box, he can do this because I only need to rotate the player image and not the acctual rectangle but for a eletric beam that one of the bosses ...
0
votes
0answers
8 views
Get pictures from Panoramio accrording to bounding box
Unfortunatly I am new to programming issues and need a clarification regarding panoramio APIs. I have the following generic link:
...
0
votes
1answer
36 views
OpenGL: 3-D box array bounding box collission
I am at the stage of my development process where I want to implement collision. Now i can think of a simple way of doing it, if the "camera"'s x,y or z are inside the position of a certain cube then ...
0
votes
1answer
34 views
Apply transformations to Bounding Box
I am trying to make a tank game. I have successfully loaded an OBJ model, and calculated its bounding box for the model at the origin.
I am now trying to apply the transformations done to my model in ...
1
vote
1answer
73 views
Collision Detection: What side was hit? [Java,Slick2D]
I have two rectangles, r1 which is moving, and r2 which is a stationary tile. I need to know what side of r2 (or r1) is hit to determine which direction r1 should go. The collision detection works ...
2
votes
1answer
84 views
Maximum-perimeter bounding rectangle for a set of points
I've been struggling for quite a while with this seemingly simple problem. I am given a set of points (which I have further simplified down to a convex hull) and my task is to find a rectangle (not ...
0
votes
1answer
48 views
storing mouse position as variable and comparing with values to fire events
I'm in a position where I can't simply use a hover event, but I need to trigger mouseover and mouseout when the mouse is inside the area of a given element and when it leaves that area. It can be ...
0
votes
1answer
67 views
Bounding Box Search in MySQL
I am trying to figure out how retrieve the information from the MySQL table below using the "top-left latitude and longitude" and "bottom-right latitude and longitude" for a geographical bounding box.
...
0
votes
1answer
19 views
Grouping different scale bounding boxes
I've created an openCV application for human detection on images.
I run my algorithm on the same image over different scales, and when detections are made, at the end I have information about the ...
0
votes
1answer
49 views
Xna Create BoundingBox Detection Manually?
So I have managed to create and successfully test boundingbox. I have now got all 8 corner points in vector[] corners = new vector[8] and vector[] corners1 = new vector[8] and just wondering what the ...
0
votes
1answer
37 views
Allegro 5 Bounding Box Detection
My bounding box detection is off. It detects collision when the boxes are "close" but not touching. Here is the relevant part off my code.
if(bounding_box_collision(playerOne.x, playerOne.y, ...
0
votes
0answers
25 views
3D Bounding Box in Android
Is there an available source code for 3D Bounding Box for Android? I researched it, but I wasn't able to find any. Then again, I'm a beginning, so I could have easily misunderstood the available code ...
1
vote
1answer
156 views
zoom mapView to a certain bounding box on osmdroid
i want to use the zoomToBoundingBox method to zoom a map to a specific bounding box.
The method does nothing but display the map on zoom level 0.
In the mapView.java source code i found this :
...
0
votes
1answer
92 views
How to stop children adding to their parent's size?
in my game I have a solar system with many bodies, they're all the same class/movie clip and their size is determined by their mass. When assigned a target that target becomes a child of the body. The ...
1
vote
3answers
246 views
Calculating the bounding box of a random triangle using coordinates
I am looking for an appropriate way to calculate the rectangular bounding box of a triangle shape which has three corners given as points - (x1,y1), (x2,y2), (x3,y3).
Here is the data type that I am ...
0
votes
2answers
94 views
Cocos2D Simple Collision Detection of a sprite, children of another sprite
I have a problem in my collision detection (I'm using cocos2d, not box2D or Chipmunk). Basically, I have the Player, which is a CCSprite, and Projectiles, also CCSprite. Everything works fine thus far ...
0
votes
1answer
59 views
How do I translate and scale points within a bounding box?
I have a number of points P of the form (x, y) where x,y are real numbers. I want to translate and scale all these points within a bounding box (rectangle) which begins at the point (0,0) (top left) ...
2
votes
1answer
78 views
How to get all the stores available within a bounding box in PHP?
I have a table containing 'places', each place with a name and lat, lng coordinates. Given a bounding box of coordinates (lat/lng perimeters), what is an efficient way to retrieve only the places ...
2
votes
2answers
165 views
Bounding (concave) polygon for multiple rectangles?
Given a set of intersecting rectangles, is there a standard algorithm to find their bounding polygon? (A polygon bounding exactly the same region as the union of the rectangles.) The rectangles can ...
1
vote
1answer
334 views
bounding box collision xna c#
I am not clear on how to set this up i need boxes rather then spheres in this case because i want to know if a laser hits an enemy ship in my 3D scene. here is my code for the spheres how would i ...
1
vote
1answer
170 views
Collision detection android (with asteroids!!)
I'm currently creating an android java game. A kind of lunar lander type game. I wish to implement some kind of obstacles, and have gone for asteroids that will be randomly placed on screen.
However, ...
1
vote
2answers
327 views
How to cut a selected part from an image in matlab?
we are dealing with a problem in our main project and we would like you to help us with it. Our project is Portable Face Recognition System. We need to cut out a face from a selected boundary.
This ...
0
votes
1answer
50 views
BBox not properly established when including a pdf figure in LaTeX
I am trying to include a pdf figure in latex. I created the figure in python using matplotlib in a simple way
fig=plt.figure()
ax= fig.add_subplot(111)
plt.plot(random(100))
...
1
vote
2answers
86 views
How to sort and compare in a Bounding Volume Hierarchy
I'm currently implementing a Bounding Volume Hierarchy for 3D-Triangles only. Sadly all explanations of BVH fall short on the part where you sort your Objects for splitting. For starters I want to aim ...
0
votes
1answer
365 views
C++ bounding box triangle collision
I need an algorithm for know if a bounding box axis align (like a cube but the sides are not equal) and a triangle intersect in a 3D space.
I am doing the code in C++, if the solution is extremly ...
2
votes
1answer
48 views
Is there a fully featured OBB class for Ogre3D?
Is there a fully featured OBB class for Ogre3D?
I don't think there is one by default but I am looking for an alternative which has all the features of the AxisAlignedBox class.
Thanks
2
votes
3answers
171 views
Get bounding box for everything that can be seen in OpenGl
How to get a bounding box on everything visible onscreen in pure OpenGL? I want the X, Y, and Z for all 8 points of the bounding box.
-2
votes
1answer
348 views
Objects detection without knowledge about scene in OpenCV [closed]
I have an assignment in which I am given a video. The video has stationary(wall,trees,car etc) and moving(people,bike) objects. I have to detect all objects and mark a bounding box around them. (of ...
0
votes
0answers
45 views
What is this AABB class' subtraction operator doing?
Class idBounds uses a pair b[0], b[1] of idVec3s (3-vectors) to define an AABB. Its subtraction operator is defined as
idBounds idBounds::operator-( const idBounds &a ) const {
assert( b[1][0] - ...
0
votes
1answer
137 views
Google Maps v3 API - How to pan map when mouse is near bounding box
I anticipate using panBy but I'm not sure how to detect when mouse is "close" to the bounding box. Not even sure where to start here.
0
votes
2answers
80 views
Rational for the small gap between the glyph bounding box and the glyph origin
In adobe's pdf 1.7 page 241 you can see a small difference between the glyph bounding box and the glyph's origin. Any idea why there is this difference?
This question is related to another question
0
votes
1answer
171 views
how to check if bounding box contains my point
I wanna know if my point is in my bounding box using coordinates:
point to check:
CLLocation -> 48.847172 2.386597
bounding box :
maxLat minLat / maxLon minLon
"48.7998602295",
"48.8198640442",
...
0
votes
3answers
1k views
Drawing Bounding-Box using OpenCV in C++ Enviroment
Hello peeps I have developed a piece of software that draws contours of the input image, now I wont to take this to the next level and draw Bounding Box around objects of interest i.e. A person. I ...
0
votes
1answer
261 views
How to get minimum/maximum latitude and longitude from a MapView?
Currently I am using the following code to get the minimum and maximum latitude and longitude from a (Google Maps) MapView object.
GeoPoint center = map.getMapCenter();
Double minLat = ...
1
vote
2answers
2k views
Bounding Box in Matlab (regionprops)
I am writing a Matlab program to segment an image and then put a bounding box around the segmented image. My code was previously working, however I am now getting the error:
Error using ...
1
vote
1answer
137 views
How to get an Ogre SceneNode Axis Oriented BoundingBox? [duplicate]
Is there any Ogre function that allows to get the SceneNode Axis Oriented BoundingBox ?
I found :
SceneNode::_getWorldAABB()
MovableObject::getBoundingBox()
MovableObject::getWorldBoundingBox()
...
0
votes
1answer
79 views
How can I find out if the background from a bounding-box is inside the cropping area?
I have an image which I can freely move, rotate and resize behind a fixed frame (fixed position and size). How can I find out with JavaScript/jQuery if the background from the bounding-box of the ...
2
votes
1answer
1k views
How to calculate the height of an NSAttributedString with given width in iOS 6 [duplicate]
Possible Duplicate:
How to get height for NSAttributedString at a fixed width
Now NSAttributedString is available in iOS 6. For layout purposes, I want to know how to calculate the required ...
1
vote
1answer
197 views
How to check bounding box in XNA 4.0?
I want to use class BoundingBox in XNA 4.0 to check collision between cube with cube or cube with sphere? I know about BoundingSphere but I don't know use to BoundingBox. Have any good sample about ...
0
votes
2answers
121 views
Bounding box for 2 points in a plane
I have 2 points A and B in a plane. What I need to find is the points w, x, y and z so that I can have a uniform bounding box.
The conditions are a line formed by wx and yz are parallel to AB.
...
5
votes
1answer
305 views
Port MATLAB bounding ellipsoid code to Python
MATLAB code exists to find the so-called "minimum volume enclosing ellipsoid" (e.g. here, also here). I'll paste the relevant part for convenience:
function [A , c] = MinVolEllipse(P, tolerance)
[d ...
0
votes
2answers
374 views
Draw polygon and detect if a marker is inside
I have these coordinates stored in a field of a database for drawing a polygon on a google map. I want to detect if a marker is inside this polygon:
(37.15730677081955, -3.7892532348632812),
...
0
votes
1answer
377 views
XNA tile based bounding box collision - sliding against a wall
I'm makeing a simple 2d tile based RPG-game using XNA. I've made a simple tile map with a list of Tile objects that contain a rectangle for each tile. My movement update for the player first creates a ...
1
vote
1answer
121 views
Script to update bounding box in one EPS with values from another EPS
I create a large number of images in LaTeX (mostly pstricks). Some of these images form part of a sequence showing the progression of some algorithm. The progression adds or removes content from the ...
1
vote
1answer
159 views
Box2d Bounding Box Without Force
Currently, the Cocos2d-Box2d project is using a b2Vec2 to create a Bounding Box for the edge of the game. Because of this, the bounding Box isn't affecting kinematic bodies, which are bodies that ...
0
votes
0answers
120 views
Bounding box for a BITMAP image - Android
I have a BITMAP image which has non zero values in the regions of interest and 0s in the region which are not of interest. Now i want to find out a bounding box of the region of interest. How do i do ...
1
vote
1answer
259 views
Can someone explain the rotating calipers to me?
I'm struggling with calculating the smallest enclosing rectangle (arbitrarily aligned) of a set of points.
I was able to calculate the convex hull using graham's algorithm.
Where I'm stuck is the ...
0
votes
1answer
101 views
javafx change anchor for label
I need to change the anchorpoint for a label in JavaFX. I describe the anchor as the point that is picked to translate the underlying node. As default the anchorpoint seems to be the upper left edge.
...



