Software Archive
Read-only legacy content
17061 토론

Are multiple cameras supported yet?

Granger_L_
초급자
3,281 조회수

I wish to use two cameras simultaneously for a project, but I saw from posts on this forum about a year ago that multiple cameras weren't supported at that time. Is that still the case?

 

UPDATE: I finally got multicamera streaming working! As mentioned librealsense is the solution. Something to be noted is that I was only able to get it working with Visual Studio 2013 Professional. It didn't not work with Visual Studio 2015 Community Edition for me.

0 포인트
18 응답
Colleen_C_Intel
3,281 조회수

Simultaneous use of multiple cameras is not supported by the RS SDK - but raw streams can be done. 

0 포인트
Granger_L_
초급자
3,281 조회수

Hi Colleen,

Thanks for the reply. Would you mind elaborating on that? Does this mean that I could use senseManager->AquireFrame for two cameras at the same time?

Thanks,

Granger

0 포인트
samontab
소중한 기여자 II
3,281 조회수

I think I read somewhere that you need to have one copy of senseManager per camera.

0 포인트
mikkel_t_
초급자
3,281 조회수

Hi,

I too would like to know more about this, could you elaborate Colleen? :-)

Thanks,

Mikkel

0 포인트
AndreCarlucci
초급자
3,281 조회수

Btw, if you have two cameras connected, how the RS SDK decides which one to use?

0 포인트
samontab
소중한 기여자 II
3,281 조회수

Andre Carlucci wrote:

Btw, if you have two cameras connected, how the RS SDK decides which one to use?

There are some methods that you can use to filter out different devices. Actually the SDK can even work with a normal webcam as well.

0 포인트
samontab
소중한 기여자 II
3,282 조회수

Now it is supported (in another library):

https://github.com/IntelRealSense/librealsense

0 포인트
Thomas_5207
새로운 기여자 I
3,282 조회수

Colleen Culbertson (Intel) wrote:

Simultaneous use of multiple cameras is not supported by the RS SDK - but raw streams can be done. 

Hi there, it would be helpful if you could expand on what you mean. I would like to use multiple cameras but only to get the streams and do some basic processing. I do not need to use the SDK to do much else apart from  computing the mapping between colour and depth as well as calculating the projection from depth to world coordinates.

Or is that not possible at all with the SDK and would need to all be managed ourselves from the raw streams as in the library that was posted above?

Many thanks,

Thomas

0 포인트
samontab
소중한 기여자 II
3,282 조회수

The Intel RealSense SDK only supports one camera at a time and Windows. This is the SDK that contains all the computer vision stuff, face detection, tracking, etc.

The librealsense library supports multiple cameras and OSs, but only provides raw access to the camera. There are no computer vision algorithms provided here.

0 포인트
CLi37
초급자
3,282 조회수

Without SDK enabled how can I convert raw data from depth camera to distance? 

0 포인트
samontab
소중한 기여자 II
3,282 조회수

Well, one of the formats for depth is in mm. Just ask the camera for it very nicely, and it will respond.

You don't need to use the SDK, just use the library.

0 포인트
Granger_L_
초급자
3,282 조회수

So is it possible for me to write a program that creates two sensemanagers -- one for one camera, another for a second camera, then grab raw stream data from both cameras?

0 포인트
samontab
소중한 기여자 II
3,282 조회수

Granger, for multiple camera support you should use librealsense instead of the RealSense SDK. It has a different interface.

0 포인트
Granger_L_
초급자
3,282 조회수

samontab wrote:

Granger, for multiple camera support you should use librealsense instead of the RealSense SDK. It has a different interface.

 

Thank samontab, I'll check that out. Have you used this library before?

0 포인트
Granger_L_
초급자
3,282 조회수

chang-li wrote:

Without SDK enabled how can I convert raw data from depth camera to distance? 

This is something I am wondering as well.

0 포인트
Colleen_C_Intel
3,282 조회수

Please see the code provided by the librealsense project:
https://github.com/IntelRealSense/librealsense/blob/master/examples/cpp-multicam.cpp

0 포인트
samontab
소중한 기여자 II
3,282 조회수

Granger L. wrote:

Quote:

samontab wrote:

 

Granger, for multiple camera support you should use librealsense instead of the RealSense SDK. It has a different interface.

 

 

 

Thank samontab, I'll check that out. Have you used this library before?

Yeah, I've tested it and it works perfectly fine for my needs, which are just raw capture from the cameras from multiple OSs.

0 포인트
mikkel_t_
초급자
3,282 조회수

Thanks @ samontab!

Great info! :-) 

Just for reference, these are the possibilities of the librealsense:

  1. Native streams: depth, color, infrared
  2. Synthetic streams: rectified images, depth aligned to color and vice versa, etc.
  3. Intrinsic/extrinsic calibration information
  4. Majority of hardware-specific functionality for individual camera generations (UVC XU controls)
  5. Multi-camera capture across heterogeneous camera architectures (e.g. mix R200 and F200 in same application)

(Copy/paste from the librealsense readme)

These should be more than sufficient to calculate all 3D point clouds etc.

 

0 포인트
응답