I have an image and want to make a rectangle around black part which is in the middle of image.

1 回表示 (過去 30 日間)
abhishek
abhishek 2014 年 6 月 23 日
編集済み: abhishek 2014 年 6 月 26 日
I have an image and want to make a rectangle around black part which is in the middle of image.

回答 (2 件)

Dishant Arora
Dishant Arora 2014 年 6 月 23 日
Go for connected component labelling and check out for bounding boxes parameter, plot it. For more information check out this demo by image analyst Image Segmentation Tutorial ("BlobsDemo")
  1 件のコメント
abhishek
abhishek 2014 年 6 月 23 日
sir i tried that code but its not working as i want. I tried bounding box, regionprops etc. but failed. so plz can you simply make some code for this situation.

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


Image Analyst
Image Analyst 2014 年 6 月 23 日
What are you starting with? A gray scale image, or that binary image? If you have that binary image, you might want to call imclose() to connect some regions together, then call bwareaopen() to get rid of small noise regions, Then call regionprops and get the centroids and bounding boxes. Find the centroid closest to the center of the image and extract only that one with ismember.
  9 件のコメント
Image Analyst
Image Analyst 2014 年 6 月 25 日
Can't you just use the Pythagorean theorem? Or hypot()?
abhishek
abhishek 2014 年 6 月 26 日
編集済み: abhishek 2014 年 6 月 26 日
hello sir. how can i find out the black pixel locations in an image and distance between center to that point.

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

Community Treasure Hunt

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

Start Hunting!

Translated by