Hi, how can i scale the image data to 0 and 1

14 views (last 30 days)
i am working on greyscale images, i have to scale the data between 0 and 1, and but dividing the image data on 255 gives only 0 or 1, how can i get the actual vale after division.

Accepted Answer

Jan
Jan on 29 Mar 2017
Edited: Stephen23 on 29 Mar 2017
If you divide an uint8, you get an uint8. Therefore either convert the matrix to double at first:
gray_d = double(gray) / 255;
But for productive work and if you have the image processing toolbox, use Thorsten's suggestion. im2double checks the type of the input and considers, if the input is a uint16 or double already.

More Answers (1)

Thorsten
Thorsten on 29 Mar 2017
Use
im2double

Categories

Find more on Convert Image Type in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!