Titusz
Titusz
See related discussion with tensorflow: https://github.com/tensorflow/tensorflow/issues/11623 Here is a pure python jpeg decoder: https://github.com/xxyxyz/flat/blob/master/flat/jpeg.py ImageMagick may be able to do it: https://stackoverflow.com/a/32257778/51627 Others have the same issues: https://stackoverflow.com/questions/45195880/why-does-tensorflow-decode-jpeg-images-differently-from-scipy-imread [libjpeg-turbo](https://libjpeg-turbo.org/) supports...
DCT calculations my yield different results depending on platform (32/64bit) due to different floating point implementations. Investigate possible [MPFR](https://www.mpfr.org/) based solutions: - [Bigfloat](https://pypi.org/project/bigfloat/) - [gmpy2](https://pypi.org/project/gmpy2/) - [mpmath](http://mpmath.org/) **mpmath** may be...