How can i set the min and max size object to detect in matlab?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Misrak Seifu
le 12 Juin 2014
Modifié(e) : Misrak Seifu
le 13 Juin 2014
How can i set the min and max size object to detect in matlab? i am working on cascade object detector.
Thank you
0 commentaires
Réponse acceptée
Dima Lisin
le 13 Juin 2014
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 commentaires
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!