I am using openslide-python to open an svs image, and I ran into the following problem:
>> import openslide as osi >> a = osi.OpenSlide('image.svs')
gives an error
TIFFReadDirectory: Warning, Unknown field with tag 347 (0x15b) encountered. image.svs: JPEG compression support is not configured. Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/manan/anaconda/lib/python2.7/site-packages/openslide/__init__.py", line 154, in __init__ self._osr = lowlevel.open(filename) File "/home/manan/anaconda/lib/python2.7/site-packages/openslide/lowlevel.py", line 178, in _check_open raise OpenSlideError(err) openslide.lowlevel.OpenSlideError: Unsupported TIFF compression: 7
I could not find a solution to this problem on the Internet; I checked libopenjpeg and any additional relevant libraries to make sure they are in their latest relevant versions.
source share