<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic You are correct. in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999374#M29539</link>
    <description>&lt;P&gt;You are correct.&lt;/P&gt;</description>
    <pubDate>Wed, 08 Jul 2015 14:01:47 GMT</pubDate>
    <dc:creator>samontab</dc:creator>
    <dc:date>2015-07-08T14:01:47Z</dc:date>
    <item>
      <title>trouble interfacing multiple camera</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999369#M29534</link>
      <description>&lt;P&gt;I am having trouble interfacing multiple intel realsense F200 cameras. I know they use PXCSenseManager to handle multiple cameras for this version, but I am not able to detect all the cameras at the same time. My objective was to select one particular camera at a particular time and then work on the next consecutively. For Intel Perceptual camera (older camera), I was able to tackle this problem by creating UtilPipeline instance. Here is a code snippet of how I was using that instance to detect multiple cameras.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;PXCCapture&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;::&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;DeviceInfo&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; dinfo;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;memset(&amp;amp;dinfo,0,&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;sizeof&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;(dinfo));&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;for&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;int&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; i = 0; i &amp;lt;numCams; i++)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;{&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;pp = &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;new&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;UtilPipeline&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;();&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;//set device index&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;dinfo.didx = i;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;pp-&amp;gt;QueryCapture()-&amp;gt;SetFilter(&amp;amp;dinfo);&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;//Initialization, capturing frames come in this block&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;}&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;pp-&amp;gt;Close();&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;pp-&amp;gt;Release();&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Can somebody help me out what needs to be changed to handle multiple cameras. Using similar concept, I was not able to connect to all the intel realsense F200 cameras. Here was what I was trying to do:&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;for (int i=0;i&amp;lt;numCams;i++)&lt;/P&gt;

&lt;P&gt;{&lt;/P&gt;

&lt;P&gt;PXCSenseManager *psm=PXCSenseManager::CreateInstance();&lt;/P&gt;

&lt;P&gt;PXCCapture::DeviceInfo dinfo;&lt;/P&gt;

&lt;P&gt;dinfo.didx=i;&lt;/P&gt;

&lt;P&gt;psm-&amp;gt;QueryCaptureManager()-&amp;gt;FilterByDeviceInfo(&amp;amp;dinfo);&lt;/P&gt;

&lt;P&gt;//Initializing and capturing frames in this block&lt;/P&gt;

&lt;P&gt;psm-&amp;gt;Release();&lt;/P&gt;

&lt;P&gt;}&lt;/P&gt;

&lt;P&gt;Can anybody figure out what needs to be done to detect and work with multiple cameras?? Any help will be deeply appreciated.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;Saif.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jul 2015 17:49:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999369#M29534</guid>
      <dc:creator>Saif_I_</dc:creator>
      <dc:date>2015-07-05T17:49:01Z</dc:date>
    </item>
    <item>
      <title>RealSense SDK is not supposed</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999370#M29535</link>
      <description>&lt;P&gt;RealSense SDK is not supposed to support multiple cameras at the same time. Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2015 16:19:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999370#M29535</guid>
      <dc:creator>Xusheng_L_Intel</dc:creator>
      <dc:date>2015-07-07T16:19:14Z</dc:date>
    </item>
    <item>
      <title>How about connecting multiple</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999371#M29536</link>
      <description>&lt;P&gt;How about connecting multiple cameras and deal with one at a time?? Ain't it possible??&lt;/P&gt;

&lt;P&gt;That was what i was trying to do. i was capturing images from selected camera filtered by the FilterByDeviceInfo() function in the PXCapture session. But it was failing to detect multiple cameras. I tried to see if the capture_viewer could detect multiple cameras, but it couldnot. I tried it with the older version camera (Intel Perceptual camera), and it was able to detect the multiple cameras connected to the system.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Is there a way out with the newer camera??&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2015 16:27:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999371#M29536</guid>
      <dc:creator>Saif_I_</dc:creator>
      <dc:date>2015-07-07T16:27:17Z</dc:date>
    </item>
    <item>
      <title>From my tests it is not</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999372#M29537</link>
      <description>&lt;P&gt;I did a couple of tests a while ago and it seems that it is not possible to work with multiple cameras with the current RealSense SDK.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2015 06:21:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999372#M29537</guid>
      <dc:creator>samontab</dc:creator>
      <dc:date>2015-07-08T06:21:00Z</dc:date>
    </item>
    <item>
      <title>So you mean that though the</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999373#M29538</link>
      <description>&lt;P&gt;So you mean that though the older camera had these features to detect multiple cameras, the newer one doesnot support this feature??&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2015 13:45:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999373#M29538</guid>
      <dc:creator>Saif_I_</dc:creator>
      <dc:date>2015-07-08T13:45:27Z</dc:date>
    </item>
    <item>
      <title>You are correct.</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999374#M29539</link>
      <description>&lt;P&gt;You are correct.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2015 14:01:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999374#M29539</guid>
      <dc:creator>samontab</dc:creator>
      <dc:date>2015-07-08T14:01:47Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999375#M29540</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
	&lt;BR /&gt;
	I think it would be a huge step foward to be able to connect more than one camera.&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Will support for multiple camera's in the near future be an option?&lt;/SPAN&gt;&lt;BR /&gt;
	&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Best regards,&lt;BR /&gt;
	&lt;BR /&gt;
	SIm&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2015 14:46:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999375#M29540</guid>
      <dc:creator>SimOne_T_</dc:creator>
      <dc:date>2015-07-08T14:46:05Z</dc:date>
    </item>
    <item>
      <title>Maybe you could use different</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999376#M29541</link>
      <description>&lt;P&gt;Maybe you could use different cameras in different computers in a local network.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2015 20:01:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999376#M29541</guid>
      <dc:creator>Ricardo_Braga</dc:creator>
      <dc:date>2015-07-08T20:01:47Z</dc:date>
    </item>
    <item>
      <title>Thats what I am thinking to</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999377#M29542</link>
      <description>&lt;P&gt;Thats what I am thinking to do. Infact, i am trying to use virtual computers for handling multiple cameras, but not sure whether it would work in this case.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2015 20:10:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999377#M29542</guid>
      <dc:creator>Saif_I_</dc:creator>
      <dc:date>2015-07-08T20:10:31Z</dc:date>
    </item>
    <item>
      <title>It is possible to use</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999378#M29543</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;It is possible to use multiple cameras altogether given the usage of 6 Real Sense cameras in the ASCtec Drone demo. But, it seems that the public SDK does not have this ability, as of now.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jul 2015 16:09:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999378#M29543</guid>
      <dc:creator>RBang</dc:creator>
      <dc:date>2015-07-18T16:09:00Z</dc:date>
    </item>
    <item>
      <title>Thanks Rishabh for the</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999379#M29544</link>
      <description>&lt;P&gt;Thanks Rishabh for the valuable comments. I will keep that in mind.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jul 2015 17:04:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999379#M29544</guid>
      <dc:creator>Saif_I_</dc:creator>
      <dc:date>2015-07-18T17:04:09Z</dc:date>
    </item>
    <item>
      <title>Quote:Saif I. wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999380#M29545</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Saif I. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Thanks Rishabh for the valuable comments. I will keep that in mind.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&amp;nbsp;&lt;BR /&gt;
	&lt;BR /&gt;
	My pleasure Saif. I myself am trying to configure multiple cameras, so will let you know if there is any development.&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 07:00:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999380#M29545</guid>
      <dc:creator>RBang</dc:creator>
      <dc:date>2015-07-22T07:00:36Z</dc:date>
    </item>
    <item>
      <title>I believe I have found a</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999381#M29546</link>
      <description>&lt;P&gt;I believe I have found a solution to running multiple cameras, though it bypasses the SDK entirely. The RealSense cameras expose themselves to Windows as generic video devices (see attached image showing two RealSense Depth devices).&lt;/P&gt;

&lt;P&gt;I have been able to run the depth streams from 4 RealSense cameras at once. However, the only streams I have been able to use successfully are the "YUY2 314x938" streams, which are interlaced and only have 8-bit depth. The 8-bit depth limit makes the stream useless, unfortunately.&lt;/P&gt;

&lt;P&gt;Question is: do the Z16 video streams contain the full 16-bit depth image? Also, how would one preview this? I haven't found a Media Foundation-capable application that supports this pixel format yet...&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="two_RealSense_cameras.png"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/7666iCFE4BC191D2E33CF/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="two_RealSense_cameras.png" alt="two_RealSense_cameras.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2015 00:39:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999381#M29546</guid>
      <dc:creator>Adam_B_</dc:creator>
      <dc:date>2015-09-11T00:39:31Z</dc:date>
    </item>
    <item>
      <title>Hi Adam,</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999382#M29547</link>
      <description>&lt;P&gt;Hi Adam,&lt;/P&gt;

&lt;P&gt;It seems like u tried that with the R200 versions. The ones in our lab are F200 cameras, wondering whether it would work in this case.&lt;/P&gt;

&lt;P&gt;Thanks for the post though. It is deeply appreciated.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2015 00:46:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999382#M29547</guid>
      <dc:creator>Saif_I_</dc:creator>
      <dc:date>2015-09-11T00:46:56Z</dc:date>
    </item>
    <item>
      <title>I have confirmed that the Z16</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999383#M29548</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I have confirmed that the Z16 streams available from the R200 in Windows Media Foundation do, indeed, contain the full depth images. We can run multiple devices easily.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Saif, if you still need multiple camera support, your F200 cameras may have similar capabilities (I don't have an F200 to test with). The Windows Media Foundation streams seem to work great, as long as you only need the raw video streams in your application.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 00:30:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999383#M29548</guid>
      <dc:creator>Adam_B_</dc:creator>
      <dc:date>2015-09-16T00:30:20Z</dc:date>
    </item>
    <item>
      <title>Hi Adam</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999384#M29549</link>
      <description>&lt;P&gt;Hi Adam&lt;/P&gt;

&lt;P&gt;could you give a hint or better a code example on how you managed accessing the&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;video streams of the cameras without SDK?&lt;BR /&gt;
	Would be great, I am trying to connect 4 F200 cameras.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Edgar&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Oct 2015 11:35:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999384#M29549</guid>
      <dc:creator>Edgar_M_</dc:creator>
      <dc:date>2015-10-14T11:35:43Z</dc:date>
    </item>
    <item>
      <title>Hi Edgar,</title>
      <link>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999385#M29550</link>
      <description>&lt;P&gt;Hi Edgar,&lt;/P&gt;

&lt;P&gt;You can access the cameras without the RealSense SDK as if they were a normal webcam.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Oct 2015 22:40:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/trouble-interfacing-multiple-camera/m-p/999385#M29550</guid>
      <dc:creator>samontab</dc:creator>
      <dc:date>2015-10-14T22:40:56Z</dc:date>
    </item>
  </channel>
</rss>

