Isolate a large black island from a similarly colored border

1 回表示 (過去 30 日間)
Cyrus N
Cyrus N 2017 年 7 月 11 日
回答済み: Image Analyst 2017 年 7 月 11 日
What kind of command will let me extract a large black island in the center of the image from its surroundings. Surrounding the large black island is a thick white band ( which I want to keep) and surrounding that is a thick black band (same color as the island that i want to extract). How do I get rid of the outer black band.

回答 (1 件)

Image Analyst
Image Analyst 2017 年 7 月 11 日
Gosh, an image would have been so instructive. Since you forgot to post it, I can only imagine. Basically to turn the outermost black boundary white, I'd invert the image (so now it's white that touches the edge of the image, not black), then get rid of white blobs touching the edge of the image, then invert again to make your black band black again.
binaryImage = ~imclearborder(~binaryImage);
If that doesn't work, then attach your image.

カテゴリ

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