I am new in OpenCV so please to be lenient. I am doing an Android application to recognize the squares/rectangles and crop them. Funtion which looks for the squares/rectangles puts the found objects to vector> squares. I just wonder how to crop the picture according to the data in points stored in vector> squares and how to compute an angle on which the picture should be rotated. Thank you for any help
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There are lots of useful posts around, I'm sure you can do a better search. Crop: Rotate: Compute angle: |
|||||
|
|
This post is citing from OpenCV QA: Extract a RotatedRect area. There's a great article by Felix Abecassis on rotating and deskewing images. This also shows you how to extract the data in the RotatedRect: You basically only need cv::getRotationMatrix2D to get the rotation matrix for the affine transformation with cv::warpAffine and cv::getRectSubPix to crop the rotated image. The relevant lines in my application are:
|
|||
|
|