Hello,
We've built a Laserfiche interface that adds/moves/deletes and OCR's documents in Laserfiche. We are running into an issue when we call the OCR engine the windows service our integration is running in spins to 100% CPU usage and never comes back down. Once this starts happening at a client location, it never stops, ever time the OCR engine is called the process spins up. We've had this happen on 10.2, 10.3, and 10.4. We have at least one client currently experiencing the issue, and can replicate it on demand.
using (OcrEngine ocrEngine = OcrEngine.LoadEngine())
{
ocrEngine.AutoOrient = true;
ocrEngine.Decolumnize = true;
ocrEngine.OptimizationMode = OcrOptimizationMode.Accuracy;
ocrEngine.Run(doc);
}
Does anyone know why this might happen and how to prevent it?