Error using > Too many input arguments.

3 ビュー (過去 30 日間)
ali Jalil
ali Jalil 2016 年 8 月 9 日
コメント済み: Stephen23 2016 年 8 月 10 日
Error using > Too many input arguments.
MeanI = find(( s.MeanIntensity>154) & (s.MeanIntensity <243 ) & (s.Perimeter>100) & (s.Area>500));
  1 件のコメント
Stephen23
Stephen23 2016 年 8 月 10 日
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)

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2016 年 8 月 9 日
MeanI = find(( [s.MeanIntensity]>154) & ([s.MeanIntensity] <243 ) & ([s.Perimeter]>100) & ([s.Area]>500));
  1 件のコメント
Image Analyst
Image Analyst 2016 年 8 月 9 日
Could be using bwpropfilt() though.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by