Connecting missing boundary segments of particles in image
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have to segment each particle seapartely given in the image. I am trying to find its boundary edges. I have attached original image and obtained boundary image, I have to connect the missing boundary segments in the given image. Please help.
0 Commenti
Risposte (1)
Image Analyst
il 28 Giu 2020
Fixing the image capture problem can make the image processing so much easier. Why don't you just simply separate the rocks before you image them? Then just threshold, fill, and call bwboundaries.
mask = grayImage < someValue;
mask = imfill(mask, 'holes');
boundaries = bwboundaries(mask);
If you want to do it the hard way, which I strongly advise against, see Steve's blog:
4 Commenti
Image Analyst
il 29 Giu 2020
Who is dictating all of these disabling requirements upon you? Do they want to get the job done or not? Who cares how it gets done as long as it gets done?
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB 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!