Hintz

Results 46 comments of Hintz

The reason this feature is important is that some attributes are input only. For example, sending a secret from the client to server but you never want to return that...

Yes. Testers unfortunately like to flip between views which leads to this crash. Thank you!

I must misunderstand the API. An incomplete PDF is generated by the following example. Where did I go wrong? ``` using (IResultRenderer renderer = Tesseract.ResultRenderer.CreatePdfRenderer(@"Output", @"Data\tessdata\")) { using (renderer.BeginDocument("PDF Test"))...

The thing that was apparently keeping my original example from working was it did not provide a second parameter to the engine’s Process method: ``` using (Pix img = Pix.LoadFromFile(tifFile))...

Tess4 dynamically enables AVX2. I don’t think you need to do anything.

Right. You can build the whole library with AVX optimization, but Tesseract also has run-time AVX detection independent of that. It is possible that performance is better one way or...

If you enable traces doesn't it say where it checks and whether or not it found it?

Once upon a time I did a PR for line removal. It helps with that situation.

I’ve never used multiple languages, but the source code for the C++ tesseract project states the following syntax. Contact tesseract-ocr on Google Groups for more information. // Parse a string...

Change both processor priority and affinity. ``` using (Process me = Process.GetCurrentProcess()) { me.PriorityClass = somepriority; if (shouldsetaffinity == true) { // The following limits processing to certain specific CPUs....