Calculate Bounding box coordinates from a rotated rectangle, Picture inside. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T19:57:41Z http://stackoverflow.com/feeds/question/622140 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/622140/calculate-bounding-box-coordinates-from-a-rotated-rectangle-picture-inside 3 Calculate Bounding box coordinates from a rotated rectangle, Picture inside. coulix 2009-03-07T17:03:41Z 2009-07-31T11:43:58Z <p>Hello,</p> <p><img src="http://img7.imageshack.us/img7/2464/boundedbox.png" alt="Schema" /></p> <p>I have the coordinates of the top left Point of a rectangle as well as its width, height and rotation from 0 to 180 and -0 to -180.</p> <p>I am trying to get the bounding coordinates of the actual box around the rectangle. What is a simple way of calculating the coordinates of the bounding box - min y, max y, min x, max x ?</p> <p>The A point is not always on the min y bound, it can be anywhere. I can use matrix the transform toolkit in as3 if needed.</p> <p>Thanks</p> http://stackoverflow.com/questions/622140/calculate-bounding-box-coordinates-from-a-rotated-rectangle-picture-inside/622155#622155 0 Answer by dirkgently for Calculate Bounding box coordinates from a rotated rectangle, Picture inside. dirkgently 2009-03-07T17:12:55Z 2009-03-07T17:12:55Z <p>I am not sure I understand, but a compound transformation matrix will give you the new co-ordinates for all points concerned. If you think the rectangle may spill over the imagable area post transformation apply a clipping path.</p> <p>In case you are unfamiliar with the exact definition of the matrices take a look <a href="http://en.wikipedia.org/wiki/Transformation%5Fmatrix#Examples%5Fin%5F2D%5Fgraphics" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/622140/calculate-bounding-box-coordinates-from-a-rotated-rectangle-picture-inside/622171#622171 2 Answer by ypnos for Calculate Bounding box coordinates from a rotated rectangle, Picture inside. ypnos 2009-03-07T17:19:45Z 2009-03-07T17:19:45Z <p>Apply the rotation matrix to your corner points. Then use the minimum/maximum respectively of the obtained x,y coordinates to define your new bounding box.</p> http://stackoverflow.com/questions/622140/calculate-bounding-box-coordinates-from-a-rotated-rectangle-picture-inside/622172#622172 4 Answer by MarkusQ for Calculate Bounding box coordinates from a rotated rectangle, Picture inside. MarkusQ 2009-03-07T17:20:36Z 2009-03-07T17:25:42Z <ul> <li>Transform the coordinates of all four corners</li> <li>Find the smallest of all four x's as <code>min_x</code> </li> <li>Find the largest of all four x's and call it <code>max_x</code></li> <li>Ditto with the y's</li> <li>Your bounding box is <code>(min_x,min_y), (min_x,max_y), (max_x,max_y), (max_x,min_y)</code></li> </ul> <p>AFAIK, there isn't any royal road that will get you there much faster.</p> <p>If you are wondering how to transform the coordinates, try:</p> <pre><code>x2 = x0+(x-x0)*cos(theta)+(y-y0)*sin(theta) y2 = y0-(x-x0)*sin(theta)+(y-y0)*cos(theta) </code></pre> <p>where (x0,y0) is the center around which you are rotating. You may need to tinker with this depending on your trig functions (do they expect degrees or radians) the sense / sign of your coordinate system vs. how you are specifying angles, etc.</p> http://stackoverflow.com/questions/622140/calculate-bounding-box-coordinates-from-a-rotated-rectangle-picture-inside/624082#624082 2 Answer by Troubadour for Calculate Bounding box coordinates from a rotated rectangle, Picture inside. Troubadour 2009-03-08T18:47:47Z 2009-03-09T07:50:46Z <p>The method outlined by MarkusQ works perfectly but bear in mind that you don't need to transform the other three corners if you have point A already.</p> <p>An alternative method, which is more efficient, is to test which quadrant your rotation angle is in and then simply compute the answer directly. This is more efficient as you only have a worst case of two if statements (checking the angle) whereas the other approach has a worst case of twelve (6 for each component when checking the other three corners to see if they are greater than the current max or less than the current min) I think.</p> <p>The basic algorithm, which uses nothing more than a series of applications of Pythagoras' theorem, is shown below. I have denoted the rotation angle by theta and expressed the check there in degrees as it's pseudo-code.</p> <pre><code>ct = cos( theta ); st = sin( theta ); hct = h * ct; wct = w * ct; hst = h * st; wst = w * st; if ( theta &gt; 0 ) { if ( theta &gt; 90 degrees ) { // 0 &lt; theta &lt; 90 y_min = A_y; y_max = A_y + hct + wst; x_min = A_x - hst; x_max = A_x + wct; } else { // 90 &lt;= theta &lt;= 180 y_min = A_y + hct; y_max = A_y + wst; x_min = A_x - hst + wct; x_max = A_x; } } else { if ( theta &gt; -90 ) { // -90 &lt; theta &lt;= 0 y_min = A_y + wst; y_max = A_y + hct; x_min = A_x; x_max = A_x + wct - hst; } else { // -180 &lt;= theta &lt;= -90 y_min = A_y + wst + hct; y_max = A_y; x_min = A_x + hct; x_max = A_x - hst; } } </code></pre> <p>This approach assumes that you have what you say you have i.e. point A and a value for theta that lies in the range [-180, 180]. I've also assumed that theta increases in the clockwise direction as that's what the rectangle that has been rotated by 30 degrees in your diagram seems to indicate you are using, I wasn't sure what the part on the right was trying to denote. If this is the wrong way around then just swap the symmetric clauses and also the sign of the st terms.</p> http://stackoverflow.com/questions/622140/calculate-bounding-box-coordinates-from-a-rotated-rectangle-picture-inside/680877#680877 1 Answer by Code Guru for Calculate Bounding box coordinates from a rotated rectangle, Picture inside. Code Guru 2009-03-25T09:41:37Z 2009-03-25T09:41:37Z <p>if you are using GDI+ , you can create a new GrpaphicsPath -> Add any points or shapes to it -> Apply rotate transformation -> use GraphicsPath.GetBounds() and it will return a rectangle that bounds your rotated shape.</p> http://stackoverflow.com/questions/622140/calculate-bounding-box-coordinates-from-a-rotated-rectangle-picture-inside/762630#762630 0 Answer by George Profenza for Calculate Bounding box coordinates from a rotated rectangle, Picture inside. George Profenza 2009-04-18T00:30:43Z 2009-04-18T00:30:43Z <p>Although Code Guru stated the GetBounds() method, I've noticed the question is tagged as3, flex, so here is an as3 snippet that illustrates the idea.</p> <pre><code>var box:Shape = new Shape(); box.graphics.beginFill(0,.5); box.graphics.drawRect(0,0,100,50); box.graphics.endFill(); box.rotation = 20; box.x = box.y = 100; addChild(box); var bounds:Rectangle = box.getBounds(this); var boundingBox:Shape = new Shape(); boundingBox.graphics.lineStyle(1); boundingBox.graphics.drawRect(bounds.x,bounds.y,bounds.width,bounds.height); addChild(boundingBox); </code></pre> <p>I noticed that there two methods that seem to do the same thing: getBounds() and getRect()</p> http://stackoverflow.com/questions/622140/calculate-bounding-box-coordinates-from-a-rotated-rectangle-picture-inside/1212091#1212091 0 Answer by for Calculate Bounding box coordinates from a rotated rectangle, Picture inside. 2009-07-31T11:43:58Z 2009-07-31T11:43:58Z <p>Hello MarkusQ </p> <p>In your reply i have some doubts </p> <p>x2 = x0+(x-x0)<em>cos(theta)+(y-y0)</em>sin(theta) y2 = y0-(x-x0)<em>sin(theta)+(y-y0)</em>cos(theta)</p> <p>In thes two equations what is x2,y2 and x0,y0 and x,y?</p> <p>As in the question we know only one point that is A(10,10)</p>