Cedric

Results 13 comments of Cedric

Yes, same here, all our images are tagged with this kind of pattern which makes the UI basically useless :/

Yep, I'm not really familiar with the stuff that has been used to build the frontend but I can try.

Same exact issue on my side

Yep, same here, it gives this error in the debug output: Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker: Information: Authorization failed for the request at filter 'AuthorizeAttribute'. Even though I'm properly registered and authenticated, the token...

OK this error is expected since I didn't sent the jwt in my POST request, now it goes through but it ends up with "Invalid token" no matter what. The...

OK I think I figured this out, it works if you authenticate and then call revoke-token with an empty JSON like this: `curl -X POST "https://localhost:5001/accounts/revoke-token" -H "accept: */*" -H...

I second this, and it's trivial as there's only a condition to add to `Tesseract.targets`: ``` x86\leptonica-1.78.0.dll PreserveNewest x86\tesseract41.dll PreserveNewest x64\leptonica-1.78.0.dll PreserveNewest x64\tesseract41.dll PreserveNewest ```

I'm having the same issue, I have managed to complile the correct leptonica 1.78.0 and tesseract 4.1.0 because I'm using a Docker image based on Debian buster and it only...

Thanks, at least it confirms that they need to be called `x64\libleptonica-1.78.0.so` and `x64\libtesseract41.so`. Oddly enough this is exactly what I do, I must be wrong somewhere else I guess...

Thanks a lot for trying to help me with this, basically, in my Docker image I have this: ``` root@st-ocr_service:/usr/local/lib# ls -alh total 145M drwxr-xr-x 1 root root 4.0K Feb...