My system is the following:
Hardware Platform - Jetson Orin NX or Orin AGX
JetPack Version 6.0
CUDA-12.2
VPI-3
Issue Type: looking for a sample code for VPI DCF tracker on Jetson.
If it’s a problem to run VPI DCF tracker on Jetson, could it be possible to run it on Linux Ubuntu 22.04 (glibc 2.35) on GeForce 2080TI with the latest driver installed? CUDA version is 12.3.
Thanks for your feedback.
As we see that pseudocode and API, so it looks like it should be a sample application somewhere…
We are writing the software on C++.
We need a real time tracker for camera application. SCRT from OpenCV is good, but slow.
We are working with USB/PCIe/GigE machine vision cameras, so we acquire raw frames from a camera driver and import them to GPU for processing.
Regards,
Fyodor
Thanks for your reply.
Unfortunately there is no sample application for DCF tracker in the VPI document. I can see just a pseudo code there.
There is a sample application for KLT tracker, but this is a different algorithm.
Thanks for your reply, I’m waiting for your info.
By the way, we’ve tested temporal denoiser on VPI, it’s working well.
I hope to run DCF on VPI as well.
Thanks for your help.
It’s not a problem if you need more time to prepare that info. This is not urgent, but it’s highly desirable.
Thanks for your efforts and for your help.
DCF Tracker sample got released with JetPack 6.1 / VPI 3.2.4, you can refer to VPI Documentation. Seems like it also works fine for Jetpack 6.0, you just need to get assets/pedestrians_bboxes.txt from VPI 3.2.4 sources to run the example.
Thank you very much for releasing your DCF Tracker sample application. I’ve tested it with Jetson Orin (Jetpack 6.1) and on Linux Ubuntu 22.04, and in both cases the results were the same.
If the camera is fixed and the object is moving, then DCF Tracker is doing a good job and tracking is working well.
If the camera is slowly moving and the object is fixed, then DCF Tracker just can’t work.
For comparison I’ve used CSRT tracker from OpenCV and it can track the object in the same situations without any issues for both cases. Could you please check your latest release of DCF Tracker in the situation with slowly moving camera and fixed object?
Actually this is the case with other trackers like KLT: they are able to track objects just in the case with fixed camera.