how to black out part of an image ?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hello all I have a question on how to black out part of my image. (the clown smile)
i have the code to load it all in.
But need to black out the smile of the image
im=imread(im=imread('scaryclown.png'); % loadimage;
im=double(rgb2gray(im));% make double and gray scale.
subplot(211); %make a subplot
imagesc(im); % show image on screen
and after the simle is black out need save it on a second subplot
subplot (212)
imagesc(im_mod);
Thank you in advance
댓글 수: 0
채택된 답변
Image Analyst
2020년 9월 17일
See my masking and copy and paste demos.
Also check out the Color Thresholder on the Apps tab or the tool ribbon.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Subplots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!