Is there a way to track a pre detected object in OpenCV

290 Views Asked by At

I have an object I'd like to track using OpenCV. In my detection algorithm I can create bounded boxes around the objects it sees, and can create a target object to track properly. My detection algorithm works well, but I want to pass this object to a tracking algorithm.I can't quite get this done without having to re write the detection and image display issues. I'm working with an NVIDA Jetson Nanoboard with an Intel Realsense camera if that helps.

1

There are 1 best solutions below

3
On

The OpenCV DNN module comes with python samples of state of the art trackers. I've heard good things about the "siamese" based ones. Have a look

Also the OpenCV contrib repo contains a whole module of various trackers. Give those a try first. They have a simple API.