how to eliminate identical portions of an image?

3 ビュー (過去 30 日間)
bil bbil
bil bbil 2014 年 8 月 26 日
回答済み: Image Analyst 2014 年 8 月 27 日
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

回答 (1 件)

Image Analyst
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).

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by