Convert Image Array To Original Svs Format
I'm trying to apply a foreground extraction to a SVS image (Whole Slide Image) usign OpenSlide library. First, I converted my image to an array to work on my foreground extraction:
Solution 1:
Unfortunately openslide does not support writing to WSI files. The best thing I have come across for writing large files is pyvips.
Correct me if I am wrong but I don't think that there is any way to save a specific svs file as it's a proprietary format.
There is an example of how to make a WSI type file in this answer
Post a Comment for "Convert Image Array To Original Svs Format"