Zaeem Burq

Results 9 comments of Zaeem Burq

@SkalskiP , yes have a `tracker_id is not None` condition in the loop, and can print each `tracker_id`.

@SkalskiP , I tried adding an empty `np.ndarray` to my `det_initial = Detections.empty()`: ```python det_initial = Detections.empty() det_initial.tracker_id = np.empty(shape, dtype=np.int64) ``` but this failed a validation. For now I...

Yes certainly. I instantiate an empty `Detections` object with the intention of appending other detection objects to it using `Detections.merge`. ```python dets_all = Detections.empty() dets_all.tracker_id = np.ndarray([]) ``` I also...

Hi @SkalskiP - apologies, I got preoccupied with another aspect of the project. I made a fix to my local copy of supervision and got it working. The bug is...

I made a temporary fix for immediate needs: ![image](https://github.com/roboflow/supervision/assets/6443451/37034795-1e1e-415c-9977-efe91a6abcfd)

@SkalskiP :pray: Yes - this works too. But feels slightly counterintuitive to me. Ideally, I'd expect `empty` to conform to any non-empty thing that merges with it, no? The reason...

... which reminds me, it'd be nice to have an `export` method for `Detections`. Particularly for merged `Detections` for a video, I'd like to export the detection data to a...

I had the same problem. Looks like there's an error in the docs. Here's what worked for me: ``` from pypika.terms import Term class CurrentDate(Term): def get_sql(self, **kwargs): return "CURRENT_DATE"...