Tips Tricks 26 - How to properly convert 16 bit to 8 bit images in python

Just normalize your 16 bit image to its respective maximum pixel value and then convert to uint8 using numpy or opencv or scikit-image Code generated in the video can be downloaded from here: For my other code:
Back to Top