Hi! I am looking for examples or recommendations on multi-camera tracking with YOLO (for example, object mapping between cameras via ReID). Are there any official/custom projects or videos that implement this? Thank you!
Hello! For handling multiple camera inputs simultaneously, you might find our documentation on multithreaded tracking helpful. This explains how to process several video streams concurrently, each with its own tracker instance.
Within each of these individual tracking instances, you can also enable Re-Identification (ReID) to help maintain object identities within that specific stream.
However, the current examples primarily focus on independent tracking per video source. True object mapping and maintaining consistent IDs for the same object across different camera views is a more complex task that often requires additional techniques like camera calibration and feature matching across disparate viewpoints, which isn’t directly covered in our basic tracking examples.