Finding BBox of the tracked object #255
-
Dear Authors, self.dim_points = initial_detection.absolute_points.shape[1] I am looking for a way to save the crops of the tracked objects to a relative destination without having to clone the entire repository and make manual changes. Thank you for your time and consideration. Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @muhammadanas25, In |
Beta Was this translation helpful? Give feedback.
Hi @muhammadanas25,
In
tracked_object.last_detection
, you can find the last detection that was matched with thetracked_object
. But if you need to access the estimated position of the bounding box as calculated by the Kalman filter, then you can get it fromtracked_object.get_estimate()
.