フィルターのクリア

What does logical AND operator do with label matrices?

2 ビュー (過去 30 日間)
Nora Griffith
Nora Griffith 2021 年 6 月 8 日
コメント済み: Nora Griffith 2021 年 6 月 8 日
In this code, blobs are small blobs within a greater tissue (tissuemask). It's my understanding that the output of watershed, wsh, is a label matrix that labels over 400 different blobs.
wsh = watershed(~(blobs)); % separate any connected blobs
c = imdilate(blobs) & wsh & tissuemask;
c is another mask that contains all three here - my question is, how is wsh treated as a logical binary mask when it contains values from 1 to over 400? How does the AND operator treat a label matrix? Does it just include any nonzero value?

採用された回答

Gatech AE
Gatech AE 2021 年 6 月 8 日
The AND operator treats any nonzero value in "wsh" as true, so specific information about the labels is thrown out when creating "c"

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by