How to find x y coordinates of detected blobs
Mostra commenti meno recenti
Dear All,
Do you know how to find the center coordinate of a blob. That means after detected blobs i need to assign variables to that blob locations.
Risposta accettata
Più risposte (1)
Nuwan Dassanayake
il 16 Set 2013
0 voti
5 Commenti
Nuwan Dassanayake
il 17 Set 2013
Image Analyst
il 17 Set 2013
xy = [stats.Centroid];
x = xy(:,1);
y = xy(:,2);
Nuwan Dassanayake
il 20 Set 2013
Modificato: Nuwan Dassanayake
il 20 Set 2013
Image Analyst
il 20 Set 2013
You can't do things like a<x<b you need to do (a<x) && (x<b) .
Nuwan Dassanayake
il 23 Set 2013
Categorie
Scopri di più su Image Arithmetic in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!