I am trying to implement a license plate recognition software using the ideas from http://iamabhik.wordpress.com/category/opencv/.
I implemented the plate location using opencv in python, using "import cv2". It works okay and now I need to copy the plate region to another image to do the segmentation of the characters and then the OCR part (maybe using a neural network).
I found the GetSubRect() function to copy or isolate part of the image but it does not appear to be available in python. Is there an alternative? The ROI functions do not seem to be implemented either.
Is there an up-to-date documentation of the python interface to opencv?
I compiled opencv from svn repository (revision 7239) on a Debian wheezy/sid environment.
Feel free to suggest alternative methods/ideas to solve this problem.