What is the use of max in the following code?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
fname = 'texture1.bmp';
e = imread(fname);
e = double(e);
im = e;
im = double(im);
im = im/max(im(:));
What is the use of last line of code in matlab?
0 Kommentare
Antworten (1)
Walter Roberson
am 15 Aug. 2015
Is is used to scale the data so that it has a maximum value of 1, so the parts of the image are considered in relative proportions rather than by absolute value. This would be common when the key information is the relationship between parts rather than how bright the example happened to be.
4 Kommentare
Siehe auch
Kategorien
Mehr zu Biological and Health Sciences finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!