How can i set the min and max size object to detect in matlab?
조회 수: 3 (최근 30일)
이전 댓글 표시
How can i set the min and max size object to detect in matlab? i am working on cascade object detector.
Thank you
댓글 수: 0
채택된 답변
Dima Lisin
2014년 6월 13일
The vision.CascadeObjectDetector object has properties MinSize and MaxSize. You can also pass 'MinSize' and 'MaxSize' name-value pairs into the object's constructor:
detector = vision.CascadeObjectDetector('MinSize', [32, 32]);
댓글 수: 2
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!