Agustín Castro

Results 15 comments of Agustín Castro

Hello! I am not sure I understood your question, may I ask you to re word it more clearly? In case you want to get the label associated to the...

Hello sadimoodi! I don't know what may be causing your specific problem, but take into account that the distance function used in the detectron2 demo doesn't take into account the...

Sorry for my late reply. Yes, what you said will be enough to take into account the resolution of the video, just redefine the distance function by returning the euclidean...

Hello! Have you tried first timing several different parts of your code to identify where the bottleneck might be? From what I understand by your previous issues, you are using...

Sorry for my late response. Given that 95% of your time is consumed by your models (80% embeddings + 15% detection), and not related to norfair, there is not much...

> Does this affect any demo? maybe the videos look different now if they were relying on the default argument I would argue that doing this make the demos even...

Hello! The `TrackedObject.estimate_velocity` is returning the horizontal and vertical velocity for each keypoint (in your case, for each corner of the bounding box) of your tracked object. If you want...

Doesn't the argument `draw_scores` of the [draw_boxes](https://github.com/tryolabs/norfair/blob/009a1b171ab14336d79d7b7b02dfa5f45066c79e/norfair/drawing/draw_boxes.py#L13) function allow you to draw the confidences?

Alright, makes sense since the score is an attribute of the `Detection` instead of the `TrackedObject`. I can make a PR to add an score attribute to the `TrackedObject` to...

I made this [PR](https://github.com/tryolabs/norfair/pull/311) which adds the scores attribute to `TrackedObject` instances. It is still not merged (since we need to first discuss if that is a feature we would...