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!