How can i set the min and max size object to detect in matlab?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Misrak Seifu
el 12 de Jun. de 2014
Editada: Misrak Seifu
el 13 de Jun. de 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 comentarios
Respuesta aceptada
Dima Lisin
el 13 de Jun. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Computer Vision with Simulink en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!