less connected pixels from gray scale image

1 回表示 (過去 30 日間)
Filza Ashraf
Filza Ashraf 2014 年 1 月 20 日
コメント済み: Walter Roberson 2014 年 1 月 20 日
i have a gray scale image that contains a box of white and a text. i need to convert only text because those pixels are less connected than box pixels. if i find an of the command for connected pixels such as bwareaopen (bw, 8) or 4 pixel connection i can even get box pixels as well but i only want to label those pixels that has less connection. need help please.
  1 件のコメント
Image Analyst
Image Analyst 2014 年 1 月 20 日
You forgot to attach your image. And I don't know what "if i find an of the command" means.

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

採用された回答

Walter Roberson
Walter Roberson 2014 年 1 月 20 日
Label the more connected pixels. The pixels that did not get labeled are then the less-connected pixels.
  2 件のコメント
Filza Ashraf
Filza Ashraf 2014 年 1 月 20 日
but sir i have to use that less connected pixels image as a mask for pixel elimination from image so i couldn't find any command to just find pixels of less connectivity
Walter Roberson
Walter Roberson 2014 年 1 月 20 日
m = bwareaopen (bw, 8);
lessconnected = bw & ~m;

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by