how to increase a pixel value
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have an M X N image named H. How can I increase the value of a particular pixel? Please help
0 Kommentare
Akzeptierte Antwort
Algorithms Analyst
am 18 Jan. 2013
you need to find the location of that pixel and then need some operations. like
[Rows Cols NumberofColorChannels]=size(H) for i=1:Rows for j=1:Cols
%Now find the location e.g you want to change the vale at 3 row and 3col initially its 2 then u can
if i==3 && j==3 do it further
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Segmentation and Analysis 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!