You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a very strange bug with function Tesseract.Pix.Image.LoadFromFile :
On debug : Perfect
On release : Perfect, but only on my PC, on other PC -> function never finish (no error ... just .... call never teminate ...)
On installation from pushing : function never finish (no error ... just .... call never teminate ...)
My code :
` Bitmap bmp = LoadPicture(bmpFile.FullName);
if (debugMode)
{
debugWindow.writeDebugLine($"Open Bitmap for OCR : {bmpFile.Name}");
}
//TesseractOCR.Pix.Image img = TesseractOCR.Pix.Image.LoadFromFile(bmpFile.FullName);
Pix img = Pix.LoadFromFile(bmpFile.FullName);
if (debugMode)
{
debugWindow.writeDebugLine($"OCR processing started on {bmpFile.Name}");
}
`
On my console window, I have the first debug message, but never the 2nd one ... And application doesn't crash ... just ... waiting ...
Tesseract : 5.2.0
Target application : .net Framework 4.8
Output Type : Windows Application
And ... I tried to used another Tesseract nuget Package (Named TesseractOCR), and I have exactly the same result !
Have you any idea ?
The text was updated successfully, but these errors were encountered:
OK, it is the same issue than ticket #636 ... Just copy folder x86 and x64 from Packages/tesseract to project root and add it to compilation in "always copy"
I have a very strange bug with function Tesseract.Pix.Image.LoadFromFile :
On debug : Perfect
On release : Perfect, but only on my PC, on other PC -> function never finish (no error ... just .... call never teminate ...)
On installation from pushing : function never finish (no error ... just .... call never teminate ...)
My code :
` Bitmap bmp = LoadPicture(bmpFile.FullName);
`
Tesseract : 5.2.0
Target application : .net Framework 4.8
Output Type : Windows Application
And ... I tried to used another Tesseract nuget Package (Named TesseractOCR), and I have exactly the same result !
Have you any idea ?
The text was updated successfully, but these errors were encountered: