Error using > Too many input arguments.
古いコメントを表示
Error using > Too many input arguments.
MeanI = find(( s.MeanIntensity>154) & (s.MeanIntensity <243 ) & (s.Perimeter>100) & (s.Area>500));
1 件のコメント
Stephen23
2016 年 8 月 10 日
Tell us what this prints:
size(s.MeanIntensity)
回答 (1 件)
Walter Roberson
2016 年 8 月 9 日
MeanI = find(( [s.MeanIntensity]>154) & ([s.MeanIntensity] <243 ) & ([s.Perimeter]>100) & ([s.Area]>500));
1 件のコメント
Image Analyst
2016 年 8 月 9 日
Could be using bwpropfilt() though.
カテゴリ
ヘルプ センター および File Exchange で Image Filtering and Enhancement についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!