<?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: SR300 / C++ - face scanning config returns pxcStatus::STATUS_FEATURE_UNSUPPORTED (?) in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444050#M3134</link>
    <description>&lt;P&gt;Hi Tyler,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Thank you very much for providing this information. Hopefully this will help some other users as well.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Regards,&lt;P&gt;&amp;nbsp;&lt;/P&gt;-Pablo</description>
    <pubDate>Tue, 03 Jan 2017 18:22:56 GMT</pubDate>
    <dc:creator>idata</dc:creator>
    <dc:date>2017-01-03T18:22:56Z</dc:date>
    <item>
      <title>SR300 / C++ - face scanning config returns pxcStatus::STATUS_FEATURE_UNSUPPORTED (?)</title>
      <link>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444046#M3130</link>
      <description>&lt;P&gt;I'm using SDK 2016 R2, and trying to get the 3D scanning functionality working for a face scan using the SR300.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was under the impression that the SR300 supported 3D face scanning??  In fact, that's a major part of the reason we've purchased it.&lt;/P&gt;&lt;P&gt;And I've tested the face scanning sample from &lt;A href="https://github.com/GameTechDev/FaceMapping2"&gt;https://github.com/GameTechDev/FaceMapping2&lt;/A&gt; &lt;A href="https://github.com/GameTechDev/FaceMapping2"&gt;https://github.com/GameTechDev/FaceMapping2&lt;/A&gt; (using SDK 2016 R1) which works fine with my SR300...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here's the relevant function (with section where I get STATUS_FEATURE_UNSUPPORTED in bold):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bool RSScanner::enable(PXCSenseManager* smPtr) {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  mSenseMgr = smPtr;&lt;/P&gt;&lt;P&gt;  if (smPtr == NULL) return false;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  pxcStatus status;&lt;/P&gt;&lt;P&gt;  status = mSenseMgr-&amp;gt;Enable3DScan();&lt;/P&gt;&lt;P&gt;  if (status &amp;lt; 0) // error&lt;/P&gt;&lt;P&gt;  {&lt;/P&gt;&lt;P&gt;  ofLogError("RSScanner") &amp;lt;&amp;lt; "unable to initialize 3D scanning module, error status: " &amp;lt;&amp;lt; status;&lt;/P&gt;&lt;P&gt;  return false;&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  mScanner = mSenseMgr-&amp;gt;Query3DScan();&lt;/P&gt;&lt;P&gt;  if (mScanner == NULL) return false;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // config scan parameters&lt;/P&gt;&lt;P&gt;  PXC3DScan::Configuration config;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  config.startScan = false;&lt;/P&gt;&lt;P&gt;  config.mode = PXC3DScan::ScanningMode::FACE;&lt;/P&gt;&lt;P&gt;  config.options = PXC3DScan::ReconstructionOption::TEXTURE; // generate texture jpg and UV map (as opposed to vertex colors)&lt;/P&gt;&lt;P&gt;  config.options = config.options | PXC3DScan::ReconstructionOption::LANDMARKS; // add landmarks data to model&lt;/P&gt;&lt;P&gt;  config.maxTriangles = 0; // 0 == no limit&lt;/P&gt;&lt;P&gt;  config.flopPreviewImage = false; // maybe make true? test it out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;  status = mScanner-&amp;gt;SetConfiguration(config);&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;  if (status &amp;lt; 0)&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;  {&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;  ofLogError("RSScanner") &amp;lt;&amp;lt; "unable to set scan configuration, error status: " &amp;lt;&amp;lt; status; /* THIS IS WHERE I GET ERROR CODE -1 == STATUS_FEATURE_UNSUPPORTED   */&amp;lt;/strong&amp;gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;  return false;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;  }&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  // mScanner-&amp;gt;Subscribe(&amp;amp;mAlertHandler); // add this later for alert callback&lt;/P&gt;&lt;P&gt;  return true;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2016 03:44:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444046#M3130</guid>
      <dc:creator>TTyle</dc:creator>
      <dc:date>2016-12-13T03:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: SR300 / C++ - face scanning config returns pxcStatus::STATUS_FEATURE_UNSUPPORTED (?)</title>
      <link>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444047#M3131</link>
      <description>&lt;P&gt;Hi tyhenry, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Thank you very much for contacting us and for your interest in the Intel® RealSense™ Technology. &lt;P&gt;&amp;nbsp;&lt;/P&gt;Could you please provide the steps you're using as exactly as possible so we can replicate your issue? I would like to know which environment you're working on and the steps you're using to compile and run. &lt;P&gt;&amp;nbsp;&lt;/P&gt;Also, I'm wondering if you have tried running the DF_3DScan.cs.exe sample. I would like to know if you get some positive results from it. You can launch it or, if you wish, compile and execute within Microsoft Visual Studio. Check this link to know where it is located &lt;A href="https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/sample_3d_scan_cs.html"&gt;https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/sample_3d_scan_cs.html&lt;/A&gt; &lt;A href="https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/sample_3d_scan_cs.html"&gt;https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/sample_3d_scan_cs.html&lt;/A&gt;. &lt;P&gt;&amp;nbsp;&lt;/P&gt;We'll be waiting for your reply. &lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Regards,&lt;P&gt;&amp;nbsp;&lt;/P&gt;-Pablo</description>
      <pubDate>Wed, 14 Dec 2016 22:36:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444047#M3131</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2016-12-14T22:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: SR300 / C++ - face scanning config returns pxcStatus::STATUS_FEATURE_UNSUPPORTED (?)</title>
      <link>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444048#M3132</link>
      <description>&lt;P&gt;Hi Henry, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;I'm wondering if you've had any time to work on this. Let us know if you need further help. &lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Regards,&lt;P&gt;&amp;nbsp;&lt;/P&gt;-Pablo</description>
      <pubDate>Thu, 22 Dec 2016 00:58:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444048#M3132</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2016-12-22T00:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: SR300 / C++ - face scanning config returns pxcStatus::STATUS_FEATURE_UNSUPPORTED (?)</title>
      <link>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444049#M3133</link>
      <description>&lt;P&gt;Hi Pablo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your responses, and I'm sorry for my delay getting back.  I was able to get it working.&lt;/P&gt;&lt;P&gt;I found a fork of the FaceMapping2 software which contains a commit aimed at compatibility with the 2016 R2 SDK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here it is:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/ph0b/FaceMapping2/commit/b213b90604da9224adf9e6c30084d8aa2bc4f25f"&gt;https://github.com/ph0b/FaceMapping2/commit/b213b90604da9224adf9e6c30084d8aa2bc4f25f&lt;/A&gt; improved compatibility with 2106 R2 SDK release. · ph0b/FaceMapping2@b213b90 · GitHub &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Essentially, it seems that the Sense Manager needs to be initialized &lt;B&gt;before &lt;/B&gt;the 3D Scan module can be configured (see &lt;A href="https://github.com/ph0b/FaceMapping2/blob/b213b90604da9224adf9e6c30084d8aa2bc4f25f/facescan/GameFaceScan.cpp#"&gt;https://github.com/ph0b/FaceMapping2/blob/b213b90604da9224adf9e6c30084d8aa2bc4f25f/facescan/GameFaceScan.cpp#&lt;/A&gt; L208 line 208).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as I can tell, that order of operations is the opposite of the 2016 R1 SDK (and the change is undocumented).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best,&lt;/P&gt;&lt;P&gt;Tyler&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jan 2017 23:45:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444049#M3133</guid>
      <dc:creator>TTyle</dc:creator>
      <dc:date>2017-01-01T23:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: SR300 / C++ - face scanning config returns pxcStatus::STATUS_FEATURE_UNSUPPORTED (?)</title>
      <link>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444050#M3134</link>
      <description>&lt;P&gt;Hi Tyler,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Thank you very much for providing this information. Hopefully this will help some other users as well.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Regards,&lt;P&gt;&amp;nbsp;&lt;/P&gt;-Pablo</description>
      <pubDate>Tue, 03 Jan 2017 18:22:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444050#M3134</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2017-01-03T18:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: SR300 / C++ - face scanning config returns pxcStatus::STATUS_FEATURE_UNSUPPORTED (?)</title>
      <link>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444051#M3135</link>
      <description>&lt;P&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2017 08:37:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/SR300-C-face-scanning-config-returns-pxcStatus-STATUS-FEATURE/m-p/444051#M3135</guid>
      <dc:creator>SEOM</dc:creator>
      <dc:date>2017-01-25T08:37:01Z</dc:date>
    </item>
  </channel>
</rss>

