I have an image and want to make a rectangle around black part which is in the middle of image.
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have an image and want to make a rectangle around black part which is in the middle of image.
0 Commenti
Risposte (2)
Dishant Arora
il 23 Giu 2014
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")
Image Analyst
il 23 Giu 2014
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 Commenti
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!