how to change specific color in image to black?

2 views (last 30 days)
Muhammad
Muhammad on 28 Apr 2022
Commented: Rik on 29 Apr 2022
hi i am trying to make a code that change the specific user define color in image to black without changing other
can any one help me this is what i have done
% Read image
im = imread('coloredChips.png');
subplot(2,2,1);
imshow(im);
im(:,:,3)=im(:,:,2);im(:,:,2)=im(:,:,1)
subplot(2,2,2);
imshow(im);
  5 Comments
Rik
Rik on 29 Apr 2022
I think that would make this question a duplicate.
@Muhammad can you give a reason why this question should not be closed?

Sign in to comment.

Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!