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]);
更多回答(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!