I'm using openslide-python
to open a svs
image, and I have run into the following issue:
>> import openslide as osi
>> a = osi.OpenSlide('image.svs')
yields the 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 haven't been able to find any solutions online for this issue; I've checked libopenjpeg
and any additional relevant libraries to ensure they are at their latest respective versions.