how to eliminate identical portions of an image?
조회 수: 2 (최근 30일)
이전 댓글 표시
hi everyone,I need help
after segmentation,i calculate the tortuosity of each vessel for two image,Now I try to remove the image the same parts
someone to a solution
댓글 수: 0
답변 (1개)
Image Analyst
2014년 8월 27일
% Find matching values
binaryImage = (image1 == image2);
% "Remove" the matching pixels by setting them to zero in each original image.
image1(binaryImage) = 0;
image2(binaryImage) = 0;
If that's not what you mean, then explain what you mean (because what you said is confusing).
댓글 수: 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!