You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I have large WSI data and multi-class jpeg masks, but I am so tired to find a solution to make them work with any hovernet implementation.
Describe the solution you'd like
I'd like to be able to feed my large WSI data along with the jpeg masks, and tiling and training then took place.
Describe alternatives you've considered
If I still need instance masks, I can do that I do this in watershed. But still don't know what format PathML would want (e.g npy, mat, json, jpeg ..etc
Additional context
Any help is highly appreciated.
Thanks!
The text was updated successfully, but these errors were encountered:
You can provide masks alongside the WSI when intializing a SlideData object. Just load the masks into numpy arrays and pass a dictionary of masks where each item is a (key, mask) pair. Masks should be the same height and width as the WSI image. Then, when tiles are generated, each tile will also have the corresponding mask. Hope this helps point in the right direction
@jacob-rosenthal Thank you. Just to follow, SlideData has attributes mask and labels, which one will take the type labels and which one in the instances? I need to set that for hovernet I believe.
Labels is meant to hold slide-level metadata, e.g. tissue type. Masks is for pixel-level metadata, e.g. a segmentation mask labeling which class each pixel is in.
For example, if you have a numpy array of a nucleus instance segmentation mask which is named nuclei_mask , you would load it into masks as a dictionary such as wsi = SlideData("/path/to/slide.svs", masks = {"nuclei" : nuclei_mask})
Is your feature request related to a problem? Please describe.
I have large WSI data and multi-class jpeg masks, but I am so tired to find a solution to make them work with any hovernet implementation.
Describe the solution you'd like
I'd like to be able to feed my large WSI data along with the jpeg masks, and tiling and training then took place.
Describe alternatives you've considered
If I still need instance masks, I can do that I do this in watershed. But still don't know what format PathML would want (e.g npy, mat, json, jpeg ..etc
Additional context
Any help is highly appreciated.
Thanks!
The text was updated successfully, but these errors were encountered: