Error using > Too many input arguments.
Mostrar comentarios más antiguos
Error using > Too many input arguments.
MeanI = find(( s.MeanIntensity>154) & (s.MeanIntensity <243 ) & (s.Perimeter>100) & (s.Area>500));
1 comentario
Stephen23
el 10 de Ag. de 2016
Tell us what this prints:
size(s.MeanIntensity)
Respuestas (1)
Walter Roberson
el 9 de Ag. de 2016
MeanI = find(( [s.MeanIntensity]>154) & ([s.MeanIntensity] <243 ) & ([s.Perimeter]>100) & ([s.Area]>500));
1 comentario
Image Analyst
el 9 de Ag. de 2016
Could be using bwpropfilt() though.
Categorías
Más información sobre Image Filtering and Enhancement en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!