How to change the max pixel value of the image

5 Ansichten (letzte 30 Tage)
Med Future
Med Future am 11 Aug. 2022
Kommentiert: Rena Berman am 23 Aug. 2022
Hello everyone i hope you are doing well.
I have the following image in which white pixel value exist 35,40,45,55
  • I want to find the maximum index for example in above 55 is the maximum index then add 50 pixel in to to make new maximum value to 105
  • Then i want to divided the each pixel value with the maximum value(105). Then map the value to 10000 e.g multiple new pixel value with 10000 so it will map between 1 to 10000
How can i do it in matlab
  3 Kommentare
Med Future
Med Future am 11 Aug. 2022
@Walter Roberson Yes it it logical array which is 2D.
The maximum index or you can say pixel value means for example the row2 show the maximum index( pixel value) which is 55.
Then i will add 50 in this index number (pixel value). the new index (pixel value) is 105. then divide all pixel values by maximum pixel value 105. and then map/multiple it by 10000.
maximum row pixel value to 10000.
idx = find(mask);
row1 = min(idx);
row2 = max(idx);
Rena Berman
Rena Berman am 23 Aug. 2022
(Answers Dev) Restored edit

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Benjamin Thompson
Benjamin Thompson am 11 Aug. 2022
This is to increase the values of specific values in a matrix. You can probably take it from there:
>>
>> A = [35 40 45 55; 35 35 55 35; 40 40 40 40]
A =
35 40 45 55
35 35 55 35
40 40 40 40
>> Ireplace = A == 55
Ireplace =
3×4 logical array
0 0 0 1
0 0 1 0
0 0 0 0
>> A(Ireplace) = 55 + 50
A =
35 40 45 105
35 35 105 35
40 40 40 40
  1 Kommentar
Med Future
Med Future am 12 Aug. 2022
@Benjamin Thompson This it not what i want. the number is still remain the same in your case

Melden Sie sich an, um zu kommentieren.

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by