<?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 Re: handenable doesn't work on R200 in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367534#M1505</link>
    <description>&lt;P&gt;Hi FakerSenBBai,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Thank you for contacting us.&lt;P&gt;&amp;nbsp;&lt;/P&gt;Looking at the features of the Gold R2 SDK you can see that hand tracking is listed as part of the improvements, so the enableHand() function should work. Is ""PXC_STATUS_ITEM_UNAVAILABLE"" the full error you receive, if it's not, please post the complete error.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;First, I think it's important to check that OpenCV is properly installed in Visual Studio. Take a look at this link for more information &lt;A href="http://giamuhammad.net/installing-opencv-3-1-in-visual-studio-2015/"&gt;http://giamuhammad.net/installing-opencv-3-1-in-visual-studio-2015/&lt;/A&gt; &lt;A href="http://giamuhammad.net/installing-opencv-3-1-in-visual-studio-2015/"&gt;http://giamuhammad.net/installing-opencv-3-1-in-visual-studio-2015/&lt;/A&gt; .&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Next, with OpenCV installed, you can try to create a new project with OpenCV. I found a link that provides lots of useful information. Take a look at &lt;A href="http://giamuhammad.net/installing-intel-realsense-sdk-c-and-opencv-in-visual-studio-2015/"&gt;http://giamuhammad.net/installing-intel-realsense-sdk-c-and-opencv-in-visual-studio-2015/&lt;/A&gt; &lt;A href="http://giamuhammad.net/installing-intel-realsense-sdk-c-and-opencv-in-visual-studio-2015/"&gt;http://giamuhammad.net/installing-intel-realsense-sdk-c-and-opencv-in-visual-studio-2015/&lt;/A&gt; . This link doesn't use the same function giving you errors, but you can run the example to check that OpenCV, Visual Studio and the SDK are properly configured.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Let us know if you're successful.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;-Sergio A&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 02 Feb 2017 20:55:29 GMT</pubDate>
    <dc:creator>idata</dc:creator>
    <dc:date>2017-02-02T20:55:29Z</dc:date>
    <item>
      <title>handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367528#M1499</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;function init() (PXCSenseManager) has return  "PXC_STATUS_ITEM_UNAVAILABLE" after handenable() function&lt;/P&gt;&lt;P&gt;(my SDK version is R2)&lt;/P&gt;&lt;P&gt;my device is r200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know why it doesn't work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is part of my code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PXCSenseManager* senseManager = 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  const int DEPTH_WIDTH = 320;&lt;/P&gt;&lt;P&gt;  const int DEPTH_HEIGHT = 240;&lt;/P&gt;&lt;P&gt;  const int DEPTH_FPS = 30;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;senseManager = PXCSenseManager::CreateInstance();&lt;/P&gt;&lt;P&gt;  if (senseManager == nullptr) {&lt;/P&gt;&lt;P&gt;  throw std::runtime_error("SenseManager 생성 실패");&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // Depth 스트림 활성화&lt;/P&gt;&lt;P&gt;  auto sts = senseManager-&amp;gt;EnableStream(PXCCapture::StreamType::STREAM_TYPE_DEPTH,&lt;/P&gt;&lt;P&gt;  DEPTH_WIDTH, DEPTH_HEIGHT, DEPTH_FPS);&lt;/P&gt;&lt;P&gt;  if (sts &amp;lt; PXC_STATUS_NO_ERROR) {&lt;/P&gt;&lt;P&gt;  throw std::runtime_error("Depth 스트림 활성화 실패");&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // 손 감지 활성화&lt;/P&gt;&lt;P&gt;  sts = senseManager-&amp;gt;EnableHand();&lt;/P&gt;&lt;P&gt;  if (sts &amp;lt; PXC_STATUS_NO_ERROR) {&lt;/P&gt;&lt;P&gt;  throw std::runtime_error("손 감지 활성화 실패");&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // 파이프 라인 초기화&lt;/P&gt;&lt;P&gt;  sts = senseManager-&amp;gt;Init();                                 &amp;lt;----------------error in this moment&lt;/P&gt;&lt;P&gt;  if (sts &amp;lt; PXC_STATUS_NO_ERROR) {&lt;/P&gt;&lt;P&gt;  throw std::runtime_error("파이프 라인 초기화 실패");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;doesn't r200 compatible handmodule????&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 11:36:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367528#M1499</guid>
      <dc:creator>GGyun</dc:creator>
      <dc:date>2017-02-02T11:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367529#M1500</link>
      <description>&lt;P&gt;This script looks very similar to the one you are using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/RealSense-Book/RealSense-Book-CPP/blob/master/CH5-1_4/RealSenseSample/main.cpp"&gt;https://github.com/RealSense-Book/RealSense-Book-CPP/blob/master/CH5-1_4/RealSenseSample/main.cpp&lt;/A&gt; RealSense-Book-CPP/main.cpp at master · RealSense-Book/RealSense-Book-CPP · GitHub &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the top of the script are these lines:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# include "pxcsensemanager.h"&lt;/P&gt;&lt;P&gt;# include "pxchandconfiguration.h"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have these at the top of your script?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 12:38:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367529#M1500</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-02-02T12:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367530#M1501</link>
      <description>&lt;P&gt;# include "pxcsensemanager.h"&lt;/P&gt;&lt;P&gt;# include "pxchandconfiguration.h"&lt;/P&gt;&lt;P&gt;# include "pxchandmodule.h"&lt;/P&gt;&lt;P&gt;# include &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes but it failed &lt;/P&gt;&lt;P&gt;I'm studying r200 using that book&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 12:52:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367530#M1501</guid>
      <dc:creator>GGyun</dc:creator>
      <dc:date>2017-02-02T12:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367531#M1502</link>
      <description>&lt;P&gt;I would guess it is looking for the file 'opencv.hpp' and cannot find it.  Do you have the OpenCV program installed on your computer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://opencv.org/"&gt;http://opencv.org/&lt;/A&gt; OpenCV | OpenCV &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/opencv/opencv/blob/master/include/opencv2/opencv.hpp"&gt;https://github.com/opencv/opencv/blob/master/include/opencv2/opencv.hpp&lt;/A&gt; opencv/opencv.hpp at master · opencv/opencv · GitHub &lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 13:18:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367531#M1502</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-02-02T13:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367532#M1503</link>
      <description>&lt;P&gt;Yes ,I'm using opencv 3.0 version  visual studio 2015 &lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 13:41:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367532#M1503</guid>
      <dc:creator>GGyun</dc:creator>
      <dc:date>2017-02-02T13:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367533#M1504</link>
      <description>&lt;P&gt;I have no experience of using OpenCV, so I do not know what else to suggest.  I'm very sorry.  Hopefully somebody else on this forum will be able to help. Good luck!&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 13:51:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367533#M1504</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-02-02T13:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367534#M1505</link>
      <description>&lt;P&gt;Hi FakerSenBBai,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Thank you for contacting us.&lt;P&gt;&amp;nbsp;&lt;/P&gt;Looking at the features of the Gold R2 SDK you can see that hand tracking is listed as part of the improvements, so the enableHand() function should work. Is ""PXC_STATUS_ITEM_UNAVAILABLE"" the full error you receive, if it's not, please post the complete error.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;First, I think it's important to check that OpenCV is properly installed in Visual Studio. Take a look at this link for more information &lt;A href="http://giamuhammad.net/installing-opencv-3-1-in-visual-studio-2015/"&gt;http://giamuhammad.net/installing-opencv-3-1-in-visual-studio-2015/&lt;/A&gt; &lt;A href="http://giamuhammad.net/installing-opencv-3-1-in-visual-studio-2015/"&gt;http://giamuhammad.net/installing-opencv-3-1-in-visual-studio-2015/&lt;/A&gt; .&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Next, with OpenCV installed, you can try to create a new project with OpenCV. I found a link that provides lots of useful information. Take a look at &lt;A href="http://giamuhammad.net/installing-intel-realsense-sdk-c-and-opencv-in-visual-studio-2015/"&gt;http://giamuhammad.net/installing-intel-realsense-sdk-c-and-opencv-in-visual-studio-2015/&lt;/A&gt; &lt;A href="http://giamuhammad.net/installing-intel-realsense-sdk-c-and-opencv-in-visual-studio-2015/"&gt;http://giamuhammad.net/installing-intel-realsense-sdk-c-and-opencv-in-visual-studio-2015/&lt;/A&gt; . This link doesn't use the same function giving you errors, but you can run the example to check that OpenCV, Visual Studio and the SDK are properly configured.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Let us know if you're successful.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;-Sergio A&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 20:55:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367534#M1505</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2017-02-02T20:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367535#M1506</link>
      <description>&lt;P&gt;I'm already installed Opencv and I've test Opencv version 2.4.10 3.0 3.10 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;sm-&amp;gt;EnableStream(PXCCapture::STREAM_TYPE_COLOR, frameSize.width, frameSize.height, frameRate);sm-&amp;gt;EnableStream(PXCCapture::STREAM_TYPE_DEPTH, frameSizeDepth.width,frameSizeDepth.height, frameRate);sm-&amp;gt;EnableFace();sm-&amp;gt;Init();&lt;P&gt;In this moment, no error&lt;/P&gt;sm-&amp;gt;EnableStream(PXCCapture::STREAM_TYPE_COLOR, frameSize.width, frameSize.height, frameRate);sm-&amp;gt;EnableStream(PXCCapture::STREAM_TYPE_DEPTH, frameSizeDepth.width,frameSizeDepth.height, frameRate);sm-&amp;gt;EnableHand();sm-&amp;gt;Init();&lt;P&gt;But error in this code.&lt;/P&gt;&lt;P&gt;No problem on another Enable*** .&lt;/P&gt;&lt;P&gt;Only error on kind of Hand &lt;/P&gt;&lt;P&gt;It caused same error,  PXC_STATUS_ITEM_UNAVAILABLE(-3)&lt;/P&gt;&lt;P&gt;I've test Depth camera and RGB camera It was success&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 12:24:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367535#M1506</guid>
      <dc:creator>GGyun</dc:creator>
      <dc:date>2017-02-03T12:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367536#M1507</link>
      <description>&lt;P&gt;And doesn't work IR camera &lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 13:03:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367536#M1507</guid>
      <dc:creator>GGyun</dc:creator>
      <dc:date>2017-02-03T13:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367537#M1508</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Thank you for letting us know you had OpenCV already installed. After further investigation I found this information on the Release notes of the SDK R2 &lt;A href="http://registrationcenter-download.intel.com/akdlm/irc_nas/7403/intel-rs-sdk-r2-release-notes.pdf"&gt;http://registrationcenter-download.intel.com/akdlm/irc_nas/7403/intel-rs-sdk-r2-release-notes.pdf&lt;/A&gt; &lt;A href="http://registrationcenter-download.intel.com/akdlm/irc_nas/7403/intel-rs-sdk-r2-release-notes.pdf"&gt;http://registrationcenter-download.intel.com/akdlm/irc_nas/7403/intel-rs-sdk-r2-release-notes.pdf&lt;/A&gt; .&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;In the first page of the Release notes you can see the SDK features. Notice that the Hand Tracking feature is only listed in the list of capabilities of the F200, not the R200.&lt;P&gt;&amp;nbsp;&lt;/P&gt;Using this SDK release, the pieces of code you used in the previous reply look good and should work in the F200 only.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;We apologize for this inconvenience.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;-Sergio&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 21:04:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367537#M1508</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2017-02-03T21:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367538#M1509</link>
      <description>&lt;P&gt;Though R200 does not track hand joints, the R2 SDK does have blob tracking so the general position of the hands could perhaps be tracked that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry I did not think to check about the R200 and hand tracking earlier.  It was one of those cases where your imagination says it swears that it has seen R200 hand tracking somewhere before, even though the brain says it cannot be true.  Like believing in Bigfoot. &lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 21:35:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367538#M1509</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-02-03T21:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367539#M1510</link>
      <description>&lt;P&gt;So it couldn't been... Thanks for your interest&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 21:43:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367539#M1510</guid>
      <dc:creator>GGyun</dc:creator>
      <dc:date>2017-02-03T21:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367540#M1511</link>
      <description>&lt;P&gt;is the blob + face tracking?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=DpxSK6TetzA"&gt;https://www.youtube.com/watch?v=DpxSK6TetzA&lt;/A&gt; Intel RealSense R200 Body Tracking demo for Unite 2016 - YouTube &lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 23:11:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367540#M1511</guid>
      <dc:creator>LSine</dc:creator>
      <dc:date>2017-02-03T23:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: handenable doesn't work on R200</title>
      <link>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367541#M1512</link>
      <description>&lt;P&gt;Though I don't own an R200 myself to test it, my experience with the F200 camera is that blob tracking will track any single large body area that is large and relatively flat.  Hence why it can be triggered by the palm of the hand, the forehead, the bottom of a foot or the knee of the leg.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's a demo of the principle from my own YouTube channel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=IOJtApQqa8A"&gt;https://www.youtube.com/watch?v=IOJtApQqa8A&lt;/A&gt; RealSense and Foot Tracking - YouTube &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You do have to get a lot closer to the camera lens though for the detection to be triggered than you do with the full hand / face landmark tracking on the F200 and SR-300.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The video's comments say it is using Person Tracking, an early alpha feature in the R2 SDK that is likely to remain alpha now, since R2 is the last SDK to support the R200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?doc_pt_person_tracking.html"&gt;https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?doc_pt_person_tracking.html&lt;/A&gt; Intel® RealSense™ SDK 2016 R2 Documentation &lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 23:56:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/handenable-doesn-t-work-on-R200/m-p/367541#M1512</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-02-03T23:56:21Z</dc:date>
    </item>
  </channel>
</rss>

