How to change the colour of the backgroud
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi, i rotate an image and i want to change the black background to white. Thanks in advance.
댓글 수: 0
채택된 답변
Laurent
2013년 8월 23일
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.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!