how to change the pixel value of an image
조회 수: 2 (최근 30일)
이전 댓글 표시
i have an image and i need to change the pixel value of that image in any co-ordinate.
댓글 수: 0
답변 (1개)
Jeff E
2012년 2월 24일
Assuming a grayscale image:
>> img = uint8([10 30 50 ; 3 4 10])
img =
10 30 50
3 4 10
>> img(2,2) = 0
img =
10 30 50
3 0 10
>>
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!