Varuni Sastry
Results
3
comments of
Varuni Sastry
This issue arises with scikit-image = 0.19.x. The older version of skimage.transform.resize function converts the inputs from uint8 to an output of float64 and normalizes it within the function. But...
Suggested changes: def normalize_mask(mask): mask = mask / (np.max(mask)) return mask self.volumes = [(normalize_volume(v), normalize_mask(m)) for v, m in self.volumes]
Any update on this ?