How to find the distance of a object from centre line of the image.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
rupam baruah
il 8 Ott 2015
Risposto: Image Analyst
il 3 Mar 2017
Sir, I have a binary image with one object. Is it possible to find the distance of the centroid of the object from the center line of the image by using 'regionprop' function? I want to know how can I find 'a' and 'b' in the image. I have attached the image. Thank You.
0 Commenti
Risposta accettata
Image Analyst
il 8 Ott 2015
Just get the centroid and then get the distances
labeledImage = bwlabel(binaryImage);
[rows, columns] = size(binaryImage);
measurements = regionprops(labeledImage, 'Centroid');
b = abs(rows/2 - measurements.Centroid(2));
deltaX = measurements.Centroid(1) - columns/2;
a = sqrt(b^2 + deltaX^2)
2 Commenti
Image Analyst
il 1 Mar 2017
regionprops() can give both Centroid which is the centroid based on the shape alone (ignoring the gray levels), and WeightedCentroid which is the centroid taking into account the gray levels at each pixel in the shape.
Image Analyst
il 2 Mar 2017
Simply white out the bottom black thing, then threshold to find dark stuff, then get the centroid in pixels, Then convert pixels to mm and divide by the frame time. If you still have questions then see my Image Segmentation Tutorial http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 If you still have questions after adapting my tutorial to your images, then post in a brand new question.
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Image Segmentation and Analysis 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!