DLR-RM / 3DObjectTracking

Algorithms and Publications on 3D Object Tracking
MIT License
624 stars 121 forks source link

Tracking with multiple cameras #37

Closed lishiyu005 closed 1 year ago

lishiyu005 commented 1 year ago

Dear author,

I would like to track objects with two Azure kinect cameras. Is there a code example to show how to make a setup with multiple cameras?

Thank you very much. Great thanks in advance.

kleinseben commented 1 year ago

I have the same issue, did you solve it ?

manuel-stoiber commented 1 year ago

Unfortunately, the AzureKinectCamera class is currently designed as a singleton class that only supports a single physical Azure Kinect camera. If you want to use multiple Azure Kinect cameras you would have to adapt the source code of this class and the respective SetUp process.

Once you have created an implementation that supports multiply physical cameras, the process is relatively easy. Just set the world2camera_pose (or camera2world_pose) for each physical camera (note that depth and color cameras have different poses) based on relative poses from an external camera calibration. After that, define separate modalities for each camera and add them to the Link object.

calmelo commented 5 months ago

Unfortunately, the AzureKinectCamera class is currently designed as a singleton class that only supports a single physical Azure Kinect camera. If you want to use multiple Azure Kinect cameras you would have to adapt the source code of this class and the respective SetUp process.

Once you have created an implementation that supports multiply physical cameras, the process is relatively easy. Just set the world2camera_pose (or camera2world_pose) for each physical camera (note that depth and color cameras have different poses) based on relative poses from an external camera calibration. After that, define separate modalities for each camera and add them to the Link object.

Hi, can you provide a code example for two realsense depth cameras? I want to use two depth cameras to increase the tracking range and I can't implement it. Excuse me, thanks!

calmelo commented 4 months ago

Dear author,

I would like to track objects with two Azure kinect cameras. Is there a code example to show how to make a setup with multiple cameras?

Thank you very much. Great thanks in advance.

Have you achieved tracking using 2 cameras?