Error using > Too many input arguments.
Afficher commentaires plus anciens
Error using > Too many input arguments.
MeanI = find(( s.MeanIntensity>154) & (s.MeanIntensity <243 ) & (s.Perimeter>100) & (s.Area>500));
1 commentaire
Stephen23
le 10 Août 2016
Tell us what this prints:
size(s.MeanIntensity)
Réponses (1)
Walter Roberson
le 9 Août 2016
MeanI = find(( [s.MeanIntensity]>154) & ([s.MeanIntensity] <243 ) & ([s.Perimeter]>100) & ([s.Area]>500));
1 commentaire
Image Analyst
le 9 Août 2016
Could be using bwpropfilt() though.
Catégories
En savoir plus sur Image Filtering and Enhancement dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!