Click here to Skip to main content
15,916,318 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i'm developed OCR by using MODI (microsoft) it working fine in win7 with vs2010,
but when it installed in win-8 system it give me error
"
C#
Retrieving the COM class factory for component with CLSID {40942A6C-1520-4132-BDF8-BDC1F71F547B} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).

" some of the dependence i'm unable resolve those problem ,
any one explain in detail TESSERACT OCR app

What I have tried:

CroppedImage.Save(@"D:\OCRReprinted\" + file_name);
get_file = @"D:\OCRReprinted\" + file_name;
tessnet2.Tesseract ocr = new tessnet2.Tesseract();


var layout = ocr.DoOCR(source, Rectangle.Empty);
Posted
Comments
[no name] 30-Sep-16 9:41am    
Explain in detail what? Read the error message. You are trying to use an ActiveX control that isn't registered in the system. Register it.
F-ES Sitecore 30-Sep-16 9:48am    
You need to install the Tesseract software onto the machine before you can use it.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900