Skip to content

can it do tracking witout detections on every frame ? #39

Open
@vitalik

Description

@vitalik

Can trackers tool do tracking without running model inference on every frame ?

def callback(frame, _):
    result = model.infer(frame)[0] # <---- this takes 99% of time
    detections = sv.Detections.from_inference(result)
    detections = tracker.update(detections)

my goal is to track objects on a video close to real time (20-30 fps) while being able to filter what to track using vision model

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions