Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extract bounding box and save it as an image

Suppose you have the following image:

Example:

Now I want to extract each of the independent letters into individual images. Currently, I've recovered the contours and then drew a bounding box, in this case for the character a:

Bounding box for the character 'a'

After this, I want to extract each of the boxes (in this case for the letter a) and save it to an image file.

Expected result:

Result

Here's my code so far:

import numpy as np import cv2  im = cv2.imread('abcd.png') im[im == 255] = 1 im[im == 0] = 255 im[im == 1] = 0 im2 = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY) ret,thresh = cv2.threshold(im2,127,255,0) contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)  for i in range(0, len(contours)):     if (i % 2 == 0):        cnt = contours[i]        #mask = np.zeros(im2.shape,np.uint8)        #cv2.drawContours(mask,[cnt],0,255,-1)        x,y,w,h = cv2.boundingRect(cnt)        cv2.rectangle(im,(x,y),(x+w,y+h),(0,255,0),2)        cv2.imshow('Features', im)        cv2.imwrite(str(i)+'.png', im)  cv2.destroyAllWindows() 

Thanks in advance.

like image 690
Edgar Andrés Margffoy Tuay Avatar asked Dec 14 '12 23:12

Edgar Andrés Margffoy Tuay


1 Answers

The following will give you a single letter

letter = im[y:y+h,x:x+w] 
like image 99
Andrey Kamaev Avatar answered Sep 25 '22 19:09

Andrey Kamaev