How to combine separate label matrix into one

4 ビュー (過去 30 日間)
Aliyu Abdu
Aliyu Abdu 2019 年 10 月 13 日
コメント済み: Aliyu Abdu 2019 年 10 月 14 日
Hello...
I have three binary masks from which I generated their individual label matrix. But I can't figure out how to combine them into one single label matrix to show the three objects. The code I use for generating the lable matrix is:
L1 = bwlabeln(BW1);
L2 = bwlabeln(BW2);
L3 = bwlabeln(BW3);
L1((L1 > 0)) = 1; L2((L2 > 0)) = 2; L3((L3 > 0)) = 3;
I then use the code below to combine the three label matrix.
L_matrix = (uint8(L1)|uint8(L2)|uint(L3));
figure,imshow(L_matrix)
But the result only shows one object (all ones instead of 1s, 2s, and 3s). Attached are the masks and the resulting L_matrix.
  2 件のコメント
dpb
dpb 2019 年 10 月 13 日
You're looking for bitor, not logical or which only returns T|F (1|0)
BTW, you missed an '8' in the last cast expression above.
Aliyu Abdu
Aliyu Abdu 2019 年 10 月 14 日
Tried it, and it worked. Thanks!

サインインしてコメントする。

回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by