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
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 日

0 投票

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.

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

カテゴリ

質問済み:

2016 年 8 月 9 日

コメント済み:

2016 年 8 月 10 日

Community Treasure Hunt

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

Start Hunting!

Translated by