Items with no label
3335 Discussions

How to activate multiple realsense cameras at the same time

HJian19
Beginner
1,351 Views

How to activate multiple realsense cameras at the same time? Or how can I choose that particular one when my computer has multiple different realsense cameras connected to it?

With the code below, the same camera is activated everytime but the other one never works.

//create the PXCSenseManager

PXCSenseManager* psm = 0;

psm = PXCSenseManager::CreateInstance();

if (!psm) {

wprintf_s(L"Unable to create the PSCSenseManager\n");

return 1;

}

//initialize the PXCSenseManager

if (psm->Init() != PXC_STATUS_NO_ERROR) {

wprintf_s(L"Unable to Init the PXCSenseManager\n");

return 2;

}

0 Kudos
2 Replies
idata
Employee
171 Views

Hello Jhang,

 

 

Thanks for contacting Intel customer service.

 

 

In order for the multi camera feature to work you will need to use a Linux distribution and use Librealsense. In the following link you will find the ROS instructions on how to do it.

 

 

http://wiki.ros.org/librealsense

 

 

Using several RealSense devices with this method will lower the camera resolution.

 

 

Best Regards,

 

Juan N.
0 Kudos
HJian19
Beginner
171 Views

Thank you for your reply. I will try to solve my problem with a Linux distribution and Librealsense.

0 Kudos
Reply