tags:

views:

470

answers:

1

Hi everyone, i'm coding an OCR MODI application for numbers recognition. It works quite well but i'm trying to speed it up.

I need to create a MODI.Document or a MODI.Image directly from a Emgu.CV.UI.ImageBox and without loading it from the hard disk.

Something like

MODI.Document md = new MODI.Document();
md.Create(my_picture_box.Image.Bitmap); 

or

MODI.IImage my_image = new MODI.IImage(my_picture_box.Image.Bitmap)

any ideas?