how to Scale the pixel values of the image so that the minimum value be- comes 0 and the maximum value becomes 255
3 ビュー (過去 30 日間)
表示 古いコメント
how to do it with loops or what function can i use
0 件のコメント
回答 (2 件)
DGM
2023 年 3 月 24 日
編集済み: DGM
2023 年 3 月 25 日
You can do this with imadjust().
outpict = imadjust(inpict,stretchlim(inpict,0));
That will work for gray or RGB images of any standard image class. The output class will be inherited from the input. If the input is RGB, each channel will be scaled independently.
There are also less convenient ways to do it
outpict = im2uint8(mat2gray(inpict));
That will work for gray or RGB images of any class, but the output will always be uint8, regardless of the input class. If the input is RGB, the entire array will be scaled as a whole.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!