Items with no label
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
3338 Discussions

How to activate multiple realsense cameras at the same time

HJian19
Beginner
1,709 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
529 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
529 Views

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

0 Kudos
Reply