soft-matter/pims

Image enhancement in PIMS frames

medea95 opened this issue · 2 comments

Hi,

I am using PIMS for some image processing and I would like to enhance the contrast in my figures.
With PIL, I would use the ImageEnhance.Contrast() function, but I could not find an equivalent function for PIMs frames. Is there a straightforward way to do it?

Thank you in advance!

That would be out of scope for PIMS, but perhaps you could use something like scikit-image's rescale_intensity function instead:
https://scikit-image.org/docs/dev/api/skimage.exposure.html#skimage.exposure.rescale_intensity

Thanks for the clarification!