Error using > Too many input arguments.

1 vue (au cours des 30 derniers jours)
ali Jalil
ali Jalil le 9 Août 2016
Commenté : Stephen23 le 10 Août 2016
Error using > Too many input arguments.
MeanI = find(( s.MeanIntensity>154) & (s.MeanIntensity <243 ) & (s.Perimeter>100) & (s.Area>500));
  1 commentaire
Stephen23
Stephen23 le 10 Août 2016
Most likely s is a non-scalar structure, and so s.MeanIntensity is a comma separated list.
Tell us what this prints:
size(s.MeanIntensity)

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
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
Image Analyst le 9 Août 2016
Could be using bwpropfilt() though.

Connectez-vous pour commenter.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by