<?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 Hi Andre, in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054184#M51142</link>
    <description>&lt;P&gt;Hi Andre,&lt;/P&gt;

&lt;P&gt;Just wanted to ask if you are you working to adapt the library to R3?&lt;/P&gt;

&lt;P&gt;Also, perhaps you have&amp;nbsp;a license somewhere, but I couldn't find it. Can you point me to it when you get a chance please.&lt;/P&gt;

&lt;P&gt;Thanks for your help.&lt;/P&gt;

&lt;P&gt;Cheers&lt;/P&gt;

&lt;P&gt;Brennon&lt;/P&gt;</description>
    <pubDate>Wed, 20 May 2015 01:09:56 GMT</pubDate>
    <dc:creator>Brennon_W_</dc:creator>
    <dc:date>2015-05-20T01:09:56Z</dc:date>
    <item>
      <title>FaceExpression Enumeration</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054175#M51133</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I am trying to execute the enumeration against the&amp;nbsp;&lt;SPAN class="f_CodeExample"&gt;FaceExpression object - it would appear that there are only about 8 implemented at the moment when I send a query to ExpressionData.QueryExpression.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I note 22 items that should be recognised - is this just a case of them not being implemented yet?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Thanks for your help.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Cheers&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 14:50:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054175#M51133</guid>
      <dc:creator>Brennon_W_</dc:creator>
      <dc:date>2015-03-17T14:50:56Z</dc:date>
    </item>
    <item>
      <title>Can you include your code</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054176#M51134</link>
      <description>&lt;P&gt;Can you include your code please? (And which 8 are you getting?)&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2015 20:39:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054176#M51134</guid>
      <dc:creator>Colleen_C_Intel</dc:creator>
      <dc:date>2015-04-02T20:39:02Z</dc:date>
    </item>
    <item>
      <title>Hi Colleen,</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054177#M51135</link>
      <description>&lt;P&gt;Hi Colleen,&lt;/P&gt;

&lt;P&gt;I have the following method that creates a Dictionary entry for each element that as per the document, should be resolved:&lt;/P&gt;

&lt;PRE class="brush:csharp;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private void BuildExpressionLibrary()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Brow Movements
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_BROW_LOWERER_RIGHT, @"Brow_Lowerer_Right");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_BROW_LOWERER_LEFT, @"Brow_Lowerer_Left");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_BROW_RAISER_RIGHT, @"Brow_Raiser_Right");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_BROW_RAISER_LEFT, @"Brow_Raiser_Left");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Mouth Movements
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_MOUTH_OPEN, @"Mouth_Open");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_SMILE, @"Smile");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_KISS, @"Kiss");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_TONGUE_OUT, @"Tongue_Out");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_PUFF_LEFT, @"Puff_Left");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_PUFF_RIGHT, @"Puff_Right");

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Head Movement
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_HEAD_TURN_LEFT, @"Head_Turn_Left");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_HEAD_TURN_RIGHT, @"Head_Turn_Right");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_HEAD_UP, @"Head_Up");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_HEAD_DOWN, @"Head_Down");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_HEAD_TILT_LEFT, @"Head_Tilt_Left");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_HEAD_TILT_RIGHT, @"Head_Tilt_Right");

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Eye Movement
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_EYES_UP, @"Eyes_Up");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_EYES_DOWN, @"Eyes_Down");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_EYES_TURN_LEFT, @"Eyes_Turn_Left");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_EYES_TURN_RIGHT, @"Eyes_Turn_Right");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_EYES_CLOSED_LEFT, @"Eyes_Closed_Left");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ExpressionDictionary.Add(PXCMFaceData.ExpressionsData.FaceExpression.EXPRESSION_EYES_CLOSED_RIGHT, @"Eyes_Closed_Right");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I never get any of the head or eye&amp;nbsp;movement data, or the two PUFF items.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2015 22:40:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054177#M51135</guid>
      <dc:creator>Brennon_W_</dc:creator>
      <dc:date>2015-04-02T22:40:57Z</dc:date>
    </item>
    <item>
      <title>So the different 'language'</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054178#M51136</link>
      <description>&lt;P&gt;So the different 'language' types return different groups out of the 22 - at least 2 of them definitely return the puff and some of the eyes.&lt;BR /&gt;
	Can you quickly use the samples page and try the various face ones and you may have to mix and match to see what they're doing differently than you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2015 23:20:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054178#M51136</guid>
      <dc:creator>Colleen_C_Intel</dc:creator>
      <dc:date>2015-04-02T23:20:33Z</dc:date>
    </item>
    <item>
      <title>Hi Brennon,</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054179#M51137</link>
      <description>&lt;P&gt;Hi Brennon,&lt;/P&gt;

&lt;P&gt;I have some working code getting the eyes movement. Check it out here:&amp;nbsp;&lt;A href="https://github.com/andrecarlucci/SharpSenses/blob/master/SharpSenses.RealSense/RealSenseCamera.cs" target="_blank"&gt;https://github.com/andrecarlucci/SharpSenses/blob/master/SharpSenses.RealSense/RealSenseCamera.cs&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2015 14:04:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054179#M51137</guid>
      <dc:creator>AndreCarlucci</dc:creator>
      <dc:date>2015-04-07T14:04:19Z</dc:date>
    </item>
    <item>
      <title>Hi Andre,</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054180#M51138</link>
      <description>&lt;P&gt;Hi Andre,&lt;/P&gt;

&lt;P&gt;Thanks for the link to your project - really appreciate you sharing all that hard work.&lt;/P&gt;

&lt;P&gt;I will progress with some further work on RS over the next few weeks and will dive a little further into&amp;nbsp;your implementation.&lt;/P&gt;

&lt;P&gt;Just to note, I see that your library requires 64bit. Any reasons for that? I only raise this as usage of&amp;nbsp;the library&amp;nbsp;in WPF or Store app scenarios may create small issues as the design surfaces of both platforms are 32bit only. (Had the same problem when I consulted on the Xbox one launch).&lt;/P&gt;

&lt;P&gt;Thanks again,&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2015 09:47:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054180#M51138</guid>
      <dc:creator>Brennon_W_</dc:creator>
      <dc:date>2015-04-08T09:47:17Z</dc:date>
    </item>
    <item>
      <title>Hi Brennon,</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054181#M51139</link>
      <description>&lt;P&gt;Hi Brennon,&lt;/P&gt;

&lt;P&gt;The libraries provided by Intel are either x86 or x64 so I had to pick to one to create a nuget package.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;You could easy change the code to work with x86, just swap the dlls with the ones you have in your SDK installation dir.&lt;/P&gt;

&lt;P&gt;I'm working in a AnyCpu version of the library, also with some support for Javascript and Windows Store Apps using SignalR, but without an AnyCpu version of the original c# dll I don't know if it would be possible to support both architectures out of the box.&lt;/P&gt;

&lt;P&gt;More details here: &lt;A href="https://software.intel.com/en-us/forums/topic/549031&amp;nbsp;" target="_blank"&gt;https://software.intel.com/en-us/forums/topic/549031&amp;nbsp;&lt;/A&gt;;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2015 17:20:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054181#M51139</guid>
      <dc:creator>AndreCarlucci</dc:creator>
      <dc:date>2015-04-08T17:20:25Z</dc:date>
    </item>
    <item>
      <title>Hi Brennon,</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054182#M51140</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Brennon,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Just to let you know: the latest version of SharpSenses supports x86 or x64.&lt;/P&gt;

&lt;P&gt;Cheers :)&lt;/P&gt;

&lt;P&gt;&lt;A href="https://github.com/SharpSenses/SharpSenses" target="_blank"&gt;https://github.com/SharpSenses/SharpSenses&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2015 02:32:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054182#M51140</guid>
      <dc:creator>AndreCarlucci</dc:creator>
      <dc:date>2015-04-30T02:32:54Z</dc:date>
    </item>
    <item>
      <title>Hi Andre,</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054183#M51141</link>
      <description>&lt;P&gt;Hi Andre,&lt;/P&gt;

&lt;P&gt;Thanks for the update!&lt;/P&gt;

&lt;P&gt;Cheers&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2015 10:08:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054183#M51141</guid>
      <dc:creator>Brennon_W_</dc:creator>
      <dc:date>2015-05-06T10:08:12Z</dc:date>
    </item>
    <item>
      <title>Hi Andre,</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054184#M51142</link>
      <description>&lt;P&gt;Hi Andre,&lt;/P&gt;

&lt;P&gt;Just wanted to ask if you are you working to adapt the library to R3?&lt;/P&gt;

&lt;P&gt;Also, perhaps you have&amp;nbsp;a license somewhere, but I couldn't find it. Can you point me to it when you get a chance please.&lt;/P&gt;

&lt;P&gt;Thanks for your help.&lt;/P&gt;

&lt;P&gt;Cheers&lt;/P&gt;

&lt;P&gt;Brennon&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2015 01:09:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054184#M51142</guid>
      <dc:creator>Brennon_W_</dc:creator>
      <dc:date>2015-05-20T01:09:56Z</dc:date>
    </item>
    <item>
      <title>Don't mind me Andre, Im an</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054185#M51143</link>
      <description>&lt;P&gt;Don't mind me Andre, Im an idiot. Just found the LICENSE file.&lt;/P&gt;

&lt;P&gt;Still, let me know if you are working on R3. I must say that I really like your implementation much better than how I've implemented it.&lt;/P&gt;

&lt;P&gt;Cheers&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2015 01:21:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054185#M51143</guid>
      <dc:creator>Brennon_W_</dc:creator>
      <dc:date>2015-05-20T01:21:40Z</dc:date>
    </item>
    <item>
      <title>Are all the expressions</title>
      <link>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054186#M51144</link>
      <description>&lt;P&gt;Are all the expressions mentioned in the SDK website supported? I can't get the head expressions to work. Here's my extended post on that:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/forums/topic/560883" target="_blank"&gt;https://software.intel.com/en-us/forums/topic/560883&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2015 00:13:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/FaceExpression-Enumeration/m-p/1054186#M51144</guid>
      <dc:creator>Mona_J_1</dc:creator>
      <dc:date>2015-07-02T00:13:26Z</dc:date>
    </item>
  </channel>
</rss>

