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

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));

카테고리

도움말 센터File Exchange에서 Image Filtering and Enhancement에 대해 자세히 알아보기

질문:

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