How to make annotation circle.? Current code appear in a box.
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
PJ_Iban
am 6 Apr. 2016
Beantwortet: Matthew Eicholtz
am 6 Apr. 2016
DetectFace = vision.CascadeObjectDetector();
BBOX = step(DetectFace, A);
B = insertObjectAnnotation(A, 'rectangle', BBOX, 'Face'); imshow(B), title('Detected faces');
0 Kommentare
Akzeptierte Antwort
Matthew Eicholtz
am 6 Apr. 2016
The function call is RGB = insertObjectAnnotation(I,shape,position,label).
Change shape from 'rectangle' to 'circle', and change position from a bounding box [x,y,w,h] to a circle vector [x,y,r], where (x,y) are the coordinates of the circle center, and r is the radius.
All of this information can be found in the help documentation:
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Tracking and Motion Estimation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!