How to change the colour of the backgroud
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi, i rotate an image and i want to change the black background to white. Thanks in advance.
0 Kommentare
Akzeptierte Antwort
Laurent
am 23 Aug. 2013
It depends on what type of image you have, but let's say it is a 8-bit grayscale image. In that case you can do the following:
thisim(thisim==0)=255;
where thisim contains your image.
If you would like a more specific answer, please provide us your image.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox 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!