pkp24
pkp24
CC#
Created by pkp24 on 7/31/2023 in #help
missing object editing window
ty
4 replies
CC#
Created by pkp24 on 3/26/2023 in #help
❔ ironocr tempfile creation problem
Bump
4 replies
CC#
Created by pkp24 on 3/4/2023 in #help
❔ Using IronOCR and noticed an issue
It's default is english
17 replies
CC#
Created by pkp24 on 3/4/2023 in #help
❔ Using IronOCR and noticed an issue
string Result = "";
var ocr = new IronTesseract();

// Crop the bitmap to the specified rect
var croppedBitmap = bitmap.Clone(rect, bitmap.PixelFormat);
using (MemoryStream ms = new MemoryStream())
{
croppedBitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
AnyBitmap test = new AnyBitmap(ms);
Result = ocr.Read(test).Text;
}
string Result = "";
var ocr = new IronTesseract();

// Crop the bitmap to the specified rect
var croppedBitmap = bitmap.Clone(rect, bitmap.PixelFormat);
using (MemoryStream ms = new MemoryStream())
{
croppedBitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
AnyBitmap test = new AnyBitmap(ms);
Result = ocr.Read(test).Text;
}
17 replies
CC#
Created by pkp24 on 3/4/2023 in #help
❔ Using IronOCR and noticed an issue
I'm not certain I'm able to change the model used by ironocr, I'm using whatever came with it
17 replies
CC#
Created by pkp24 on 3/4/2023 in #help
❔ Using IronOCR and noticed an issue
Do you know of another simple yet good model? I tried using normal Tesseract to no avail
17 replies
CC#
Created by pkp24 on 3/4/2023 in #help
❔ Using IronOCR and noticed an issue
It seems to fail only for 5053 or 50530 or some other variation of that. I've had this code running for about an hour in total and those are the only things it fails on.
17 replies