how to convert a gray level to another gray level in matlab?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
fariba amini
am 4 Apr. 2016
Kommentiert: fariba amini
am 4 Apr. 2016
i have an gray scale image.i want to change some gray level to another gray level.for example i want to convert all pixel with value 128 to 0 ,how can i do this?
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Muhammad Usman Saleem
am 4 Apr. 2016
my_image =imread('YourImage.tif');
for R=1:num of Rows
for C=1:num of Columns
pixel=my_image(R,C);
if pixel ==128
pixel=0;
end
end
1 Kommentar
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!