<?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 That means the SDK did not in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008417#M32983</link>
    <description>&lt;P&gt;That means the SDK did not find the device meet the requirement. Do you have Intel 3D camera? The 3D camera is default in facial module. You need&amp;nbsp;pFaceConfig-&amp;gt;SetTrackingMode(PXCFaceConfiguration::TrackingModeType::FACE_MODE_COLOR); if you want to use 2D camera in facial module. Enjoy!&lt;/P&gt;</description>
    <pubDate>Tue, 02 Dec 2014 18:25:12 GMT</pubDate>
    <dc:creator>Xusheng_L_Intel</dc:creator>
    <dc:date>2014-12-02T18:25:12Z</dc:date>
    <item>
      <title>how to load image</title>
      <link>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008414#M32980</link>
      <description>Hi, please advice me how to load image.
I want to load pre-recorded image and detect face.
when I use PerC SDK 2013, I can load it and get face data.
However, RealSense SDK might hide the function to load an image, don't it?

PerC SDK 2013
---------------------------------------------------
sts = face-&amp;gt;ProcessImageAsync(&amp;amp;img1, sps.ReleaseRef(1));
---------------------------------------------------

PXCVideoModule class has ProcessImageAsync method.
I don't know how to get instance of PXCVideoModule.

Could you give me an advice or sample to load an image not live camera?


Thanks.</description>
      <pubDate>Tue, 02 Dec 2014 10:43:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008414#M32980</guid>
      <dc:creator>Tooru_A_</dc:creator>
      <dc:date>2014-12-02T10:43:38Z</dc:date>
    </item>
    <item>
      <title>Here you go. Hope it will</title>
      <link>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008415#M32981</link>
      <description>&lt;P&gt;Here you go. Hope it will give you help.&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;PXCSyncPoint* sp = NULL;
PXCImage* image = NULL;

createImage(&amp;amp;image);
PXCCapture::Sample* sample = new PXCCapture::Sample();
sample-&amp;gt;color = image;
		
do {
	sts = psm-&amp;gt;QueryCaptureManager()-&amp;gt;ReadModuleStreamsAsync(pFaceConfig-&amp;gt;CUID, sample, &amp;amp;sp);
      }while (sts &amp;lt; PXC_STATUS_NO_ERROR);
		
sp-&amp;gt;Synchronize();

faceOutput-&amp;gt;Update();

faceOutput-&amp;gt;QueryFaceByIndex(0)-&amp;gt;QueryRecognition()-&amp;gt;RegisterUser();&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2014 17:05:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008415#M32981</guid>
      <dc:creator>Xusheng_L_Intel</dc:creator>
      <dc:date>2014-12-02T17:05:41Z</dc:date>
    </item>
    <item>
      <title>Hi, David.</title>
      <link>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008416#M32982</link>
      <description>Hi, David.

Thank you very much!

I tried your code.
But the process loops infinitely from LINE08 to LINE10.
LINE09 ReadModuleStreamAsync method returns PXC_STATUS_ITEM_UNAVAILABLE(-3)
Do you know why?</description>
      <pubDate>Tue, 02 Dec 2014 17:59:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008416#M32982</guid>
      <dc:creator>Tooru_A_</dc:creator>
      <dc:date>2014-12-02T17:59:06Z</dc:date>
    </item>
    <item>
      <title>That means the SDK did not</title>
      <link>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008417#M32983</link>
      <description>&lt;P&gt;That means the SDK did not find the device meet the requirement. Do you have Intel 3D camera? The 3D camera is default in facial module. You need&amp;nbsp;pFaceConfig-&amp;gt;SetTrackingMode(PXCFaceConfiguration::TrackingModeType::FACE_MODE_COLOR); if you want to use 2D camera in facial module. Enjoy!&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2014 18:25:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008417#M32983</guid>
      <dc:creator>Xusheng_L_Intel</dc:creator>
      <dc:date>2014-12-02T18:25:12Z</dc:date>
    </item>
    <item>
      <title>I don't have Intel 3D camera.</title>
      <link>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008418#M32984</link>
      <description>I don't have Intel 3D camera.
I'm using Surface Pro 3 with inner camera "Microsft LifeCam Front".

I did pFaceConfig-&amp;gt;SetTrackingMode(PXCFaceConfiguration::TrackingModeType::FACE_MODE_COLOR);
the result is same. 
LINE09 ReadModuleStreamAsync method returns PXC_STATUS_ITEM_UNAVAILABLE(-3)



I tried to change CUID.
sts = captureManager-&amp;gt;ReadModuleStreamsAsync(PXCFaceModule::CUID, sample, &amp;amp;sp);
Then, ReadModuleStreamAsync method returns PXC_STATUS_NO_ERROR(0).
But m_output-&amp;gt;QueryFaceByIndex(0) returns NULL</description>
      <pubDate>Wed, 03 Dec 2014 06:36:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008418#M32984</guid>
      <dc:creator>Tooru_A_</dc:creator>
      <dc:date>2014-12-03T06:36:53Z</dc:date>
    </item>
    <item>
      <title>please help me.</title>
      <link>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008419#M32985</link>
      <description>please help me.
I haven't yet solve my problem.</description>
      <pubDate>Tue, 16 Dec 2014 13:59:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/how-to-load-image/m-p/1008419#M32985</guid>
      <dc:creator>Tooru_A_</dc:creator>
      <dc:date>2014-12-16T13:59:29Z</dc:date>
    </item>
  </channel>
</rss>

