<?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 Yes, I have... OF COURSE. A in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Javascript-camera-streams/m-p/1058154#M52911</link>
    <description>&lt;P&gt;Yes, I have... OF COURSE. A server does the heavy lifting and JS just retrieves the data. I wonder if the server also can send raw stream info. That's why I checked the C sources, but those actually do not use a server.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 24 Jan 2015 02:47:21 GMT</pubDate>
    <dc:creator>diego_R_3</dc:creator>
    <dc:date>2015-01-24T02:47:21Z</dc:date>
    <item>
      <title>Javascript camera streams</title>
      <link>https://community.intel.com/t5/Software-Archive/Javascript-camera-streams/m-p/1058150#M52907</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I would like to access the raw color stream from the camera and display it on a canvas tag. Disregard any performance issues, unless you have suggestions. I am trying to find a way to do this from the&amp;nbsp;realsense-3.0.js file but still lost&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jan 2015 05:24:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Javascript-camera-streams/m-p/1058150#M52907</guid>
      <dc:creator>diego_R_3</dc:creator>
      <dc:date>2015-01-23T05:24:52Z</dc:date>
    </item>
    <item>
      <title>I feel like I need to add a</title>
      <link>https://community.intel.com/t5/Software-Archive/Javascript-camera-streams/m-p/1058151#M52908</link>
      <description>&lt;P&gt;I feel like I need to add a method to:&lt;/P&gt;

&lt;P&gt;function PXCMSenseManager(instance) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; var instance = instance;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; var self = this;&lt;/P&gt;

&lt;P&gt;.....}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;something like this:&lt;/P&gt;

&lt;P&gt;this.StreamFrames = function () {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return RealSense.connection.call(instance, 'PXCMSenseManager_StreamFrames', { blocking: false });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; };&lt;/P&gt;

&lt;P&gt;But the code "&lt;SPAN style="line-height: 19.5120010375977px;"&gt;PXCMSenseManager_StreamFrames&lt;/SPAN&gt;" must be changed to something else. How its done in C# might give out a clue:&lt;/P&gt;

&lt;P&gt;PXCMSenseManager pp = PXCMSenseManager.CreateInstance();&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (pp == null)&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; form.UpdateStatus("Failed to create an SDK pipeline object");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (!form.IsModeLive())&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pp.captureManager.SetFileName(form.GetFileName(), form.IsModeReocrd());&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* Set Input Source */&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PXCMCapture.DeviceInfo dinfo2 = form.GetCheckedDevice();&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (form.IsModeLive() || form.IsModeReocrd())&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pp.captureManager.FilterByDeviceInfo(dinfo2);&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* Set Color &amp;amp; Depth Resolution */&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PXCMCapture.Device.StreamProfileSet filter = new PXCMCapture.Device.StreamProfileSet();&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PXCMCapture.Device.StreamProfile cinfo = form.GetColorConfiguration();&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (cinfo.imageInfo.format!=0)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Single cfps = cinfo.frameRate.max;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pp.EnableStream(PXCMCapture.StreamType.STREAM_TYPE_COLOR, cinfo.imageInfo.width, cinfo.imageInfo.height, cfps);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; filter.color = cinfo;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Help!!!&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jan 2015 09:29:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Javascript-camera-streams/m-p/1058151#M52908</guid>
      <dc:creator>diego_R_3</dc:creator>
      <dc:date>2015-01-23T09:29:06Z</dc:date>
    </item>
    <item>
      <title>Anyone? help please!</title>
      <link>https://community.intel.com/t5/Software-Archive/Javascript-camera-streams/m-p/1058152#M52909</link>
      <description>&lt;P&gt;Anyone? help please!&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jan 2015 20:23:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Javascript-camera-streams/m-p/1058152#M52909</guid>
      <dc:creator>diego_R_3</dc:creator>
      <dc:date>2015-01-23T20:23:46Z</dc:date>
    </item>
    <item>
      <title>Have you looked at the</title>
      <link>https://community.intel.com/t5/Software-Archive/Javascript-camera-streams/m-p/1058153#M52910</link>
      <description>&lt;P&gt;Have you looked at the provided examples?&lt;/P&gt;

&lt;P&gt;This one tracks your face using javascript:&lt;BR /&gt;
	c:/Program Files/Intel/RSSDK/framework/JavaScript/face_tracking.html&lt;/P&gt;</description>
      <pubDate>Sat, 24 Jan 2015 00:33:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Javascript-camera-streams/m-p/1058153#M52910</guid>
      <dc:creator>samontab</dc:creator>
      <dc:date>2015-01-24T00:33:00Z</dc:date>
    </item>
    <item>
      <title>Yes, I have... OF COURSE. A</title>
      <link>https://community.intel.com/t5/Software-Archive/Javascript-camera-streams/m-p/1058154#M52911</link>
      <description>&lt;P&gt;Yes, I have... OF COURSE. A server does the heavy lifting and JS just retrieves the data. I wonder if the server also can send raw stream info. That's why I checked the C sources, but those actually do not use a server.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Jan 2015 02:47:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Javascript-camera-streams/m-p/1058154#M52911</guid>
      <dc:creator>diego_R_3</dc:creator>
      <dc:date>2015-01-24T02:47:21Z</dc:date>
    </item>
  </channel>
</rss>

