replace RGB values with new values
조회 수: 1(최근 30일)
표시 이전 댓글
How to change the pixel values of a RGB image to
% if pixel value is in the following range
0-64 to 0
65-128 to 1
129-192 to 2
192-255 to 3
How to change in all the channels without using for loop
댓글 수: 0
채택된 답변
Dyuman Joshi
2022년 5월 25일
편집: Dyuman Joshi
2022년 5월 25일
rgb=[67,68,69;0,67,69;0,66,68;125,126,127;122,125,127;117,122,126;113,114,115;110,113,115;106,111,114]
floor(abs(rgb-1)/64)
댓글 수: 2
추가 답변(0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!