フィルターのクリア

How can I find the connected components of an image and then label them?

1 回表示 (過去 30 日間)
Prachi Sharma
Prachi Sharma 2016 年 10 月 6 日
コメント済み: Massimo Zanetti 2016 年 10 月 6 日
So I have this image attached here and bw is of type 512*512 logical.I need to find the connected components of this image and then label them.I have read about 'bwconncomp' but I am unable to get connected components from it.How can I move further?

採用された回答

Massimo Zanetti
Massimo Zanetti 2016 年 10 月 6 日
There are matlab functions:
%compute conn components
CC = bwconncomp(BW);
%label them
L = labelmatrix(CC);
  6 件のコメント
Prachi Sharma
Prachi Sharma 2016 年 10 月 6 日
Yeah you are right.It is working I checked L values.Thanks a ton. :)
Massimo Zanetti
Massimo Zanetti 2016 年 10 月 6 日
You are welcome :)

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by