How can i set the min and max size object to detect in matlab?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Misrak Seifu
am 12 Jun. 2014
Bearbeitet: Misrak Seifu
am 13 Jun. 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 Kommentare
Akzeptierte Antwort
Dima Lisin
am 13 Jun. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!