필터 지우기
필터 지우기

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

조회 수: 6 (최근 30일)
Hafeez
Hafeez 2017년 3월 28일
편집: Stephen23 2017년 3월 29일
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.

채택된 답변

Jan
Jan 2017년 3월 29일
편집: Stephen23 2017년 3월 29일
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.

추가 답변 (1개)

Thorsten
Thorsten 2017년 3월 29일

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by