I am trying to crop a portion of an image as shown below using opencv / PIL . I want to crop the rectangle area as shown in red lines in the image in the below link. It is tilted at an angle.
I used numpy slicing logic as below. But it doesn't crop at an angle. It crops a normal straight rectangle
rect = cv2.boundingRect(pts)
x,y,w,h = rect
cropped = img[y:y+h, x:x+w]
Also tried rotating the entire image at an angle and then cropping that part but it shrinks the resulting image
I am able to draw a rectangle on that image using the below code :
def draw_angled_rec(x0, y0, width, height, angle, img):
_angle = angle * math.pi / 180.0
b = math.cos(_angle) * 0.5
a = math.sin(_angle) * 0.5
pt0 = (int(x0 - a * height - b * width),
int(y0 + b * height - a * width))
pt1 = (int(x0 + a * height - b * width),
int(y0 - b * height - a * width))
pt2 = (int(2 * x0 - pt0[0]), int(2 * y0 - pt0[1]))
pt3 = (int(2 * x0 - pt1[0]), int(2 * y0 - pt1[1]))
cv2.line(img, pt0, pt1, (255,0,0), 3)
cv2.line(img, pt1, pt2, (255,0,0), 3)
cv2.line(img, pt2, pt3, (255,0,0), 3)
cv2.line(img, pt3, pt0, (255,0,0), 3)
Please suggest / advice a way to achieve it.
Thanks
Here's a image extraction widget that allows you to rotate the image and select a ROI by clicking and dragging the mouse. The idea is to use the mouse to select the bounding box window where we can use Numpy slicing to crop the image. Since OpenCV does not let you draw an angled rectangle, you can bypass that by first rotating the image.
Once you have selected the ROI, you can then crop the image using the bounding box coordinates. If we consider
(0,0)
as the top left corner of the image with left-to-right as the x-direction and top-to-bottom as the y-direction and we have(x1, y1)
as the top-left vertex and(x2,y2)
as the bottom-right vertex of a ROI, we can crop the image by:We are able to do this since images are stored as a Numpy array in OpenCV. Here is a great resource for Numpy array indexing and slicing.
To use the widget:
left mouse click + drag
- select ROIright mouse click
- reset imager
- rotate image clockwise 5 degreese
- rotate image counter-clockwise 5 degreesc
- crop selected ROIq
- quit program