Hi
Please download the "pixelize plates" demo:
http://www.imageen.com/files/Other/PixelizePlates.zip
Which returns the rect of each number plate in image.
Then review the source code for the OCR demo (in the IEVsion\OCR\ folder):
// create OCR object
m_OCR := IEVisionLib.createOCR(PAnsiChar(AnsiString(langPath)), PAnsiChar(AnsiString(langCode)), TIEVisionOCREngine(cmbEngine.ItemIndex));
// set page layout
m_OCR.setSegmentationMode(TIEVisionOCRPageSegmentationMode(cmbLayout.ItemIndex));
// perform OCR
ocrrect := ImageEnView1.SelectedRect;
memo1.Lines.Text := m_OCR.recognize(ImageEnView1.IEBitmap.GetIEVisionImage(),
IEVisionRect(ocrrect.x, ocrrect.y, ocrrect.width, ocrrect.height)).c_str();
Change the ocrrect := ... line to use the rect returned by the "Pixelize Plates" demo.
It is quite straightforward, but let us know if you have any difficulty.
Nigel
Xequte Software
www.imageen.com