Hi
I use an application Windev and loaded the OCR Engine but no text is extracted. I don’t receive any errors.
Using .NET v4
pclOcrEngine is OcrEngine dynamic
pclOcrEngine = new OcrEngine
pclOcrEngine.ClearNotifies()
pclOcrEngine.Config.ClearRecognitionBlocks()
pclOcrEngine.Config.DetectTextRegions = True
pclOcrEngine.Config.ProcessColoredBackground = True
pclOcrEngine.Config.AddRecognitionBlock(RecognitionBlock.CreateTextBlock(361, 372, 330, 69))
pclOcrEngine.Image = ImageStream.FromFile(“D:\Google Drive\ScanSnap\untitled004.jpg”)
IF pclOcrEngine.Process() = True THEN
EDT_Text1 = pclOcrEngine.text
ELSE
EDT_Text1 = “Nothing was done.”
END
No error is created but no text are returned. I have tried the same above without the RecognitionBlock but same result.