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
For now, Francis only manages nifti files, but it can be interesting to add support of more image type. I first thought about png and jpg format.
For jpg images, we can use the skimage.io.imread function.
For png, I found that the imageio module can help using imageio.imread method (as described here)
The text was updated successfully, but these errors were encountered:
I was thinking about the display of this type of image, maybe the display will need some refactoring to be able to see RGB image? Or we can only use greyscale images in the first place?
For now, Francis only manages nifti files, but it can be interesting to add support of more image type. I first thought about png and jpg format.
For jpg images, we can use the
skimage.io.imread
function.For png, I found that the
imageio
module can help usingimageio.imread
method (as described here)The text was updated successfully, but these errors were encountered: