I have a program where a 2D shape is represented by an R-trees. I want to be able to efficiently detect whether a shape is completely contained within another shape. Is this possible with R-tree?

link|improve this question

In the general case: No, you can't determin if a shape is completly contained within another shape, as an R-Tree uses the minimal bounding box (the smallest rectangle big enough to enclose the shape) to represent/organize shapes; concave polygons (shapes) can fall into the same bounding box even if one is not completly contained in the other (try it with pen and paper, you get an example really quick). Look at the question Emir Akaydın linked to. – Tom Regner Nov 15 '11 at 9:25
feedback

2 Answers

up vote 0 down vote accepted

R-trees work on bounding boxes. So for polygon-inside-polygon tests, it can serve as an efficient filtering step, but not answer the exact query. It produces candidates, and skips sure misses efficiently.

link|improve this answer
feedback

if the shape is a child element, it means it is contained under parent element. if you have a problem with detecting a polygon inside another polygon, you can check this link.

Check if polygon is inside a polygon

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.