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!