Manipulate RGB Values for an Image
조회 수: 5 (최근 30일)
이전 댓글 표시
Hello, I was wondering how I would increase the value of the blue layer of a .jpg. So far, I have only been able to find what those values are, using size(x).
댓글 수: 0
채택된 답변
Walter Roberson
2012년 11월 19일
BX = 0.20; %20 percent
IM(:,:,3) = IM(:,:,3) * (1 + BX);
Provided that IM is uint8 dataclass, the limiting to 255 will happen automatically.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!