<?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: recognitionModuleData.QueryDatabaseBuffer(buffer) return null in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484280#M5210</link>
    <description>&lt;P&gt;Someone else was asking about face recognition databases this weekend, so I will point you to that discussion in case there is something in it that helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;</description>
    <pubDate>Sat, 15 Apr 2017 14:02:34 GMT</pubDate>
    <dc:creator>MartyG</dc:creator>
    <dc:date>2017-04-15T14:02:34Z</dc:date>
    <item>
      <title>recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484274#M5204</link>
      <description>&lt;P&gt;hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to get recognition data to file using byte[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But every time i execute this &lt;B&gt;recognitionModuleData.QueryDatabaseBuffer(buffer)&lt;/B&gt; , buffer is getting null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me to fix this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using SR300 depth camera. &lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 16:37:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484274#M5204</guid>
      <dc:creator>blakm</dc:creator>
      <dc:date>2017-02-27T16:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484275#M5205</link>
      <description>&lt;P&gt;Others in the past have experienced this problem.  There are functions related to face recognition database creation that are in the documentation but not in the SDK.  This was because they were in a test version of the SDK and were removed from the final release.  The issue was first documented in the 2016 R1 SDK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recommend following the advice above, to look through your script for these 'CreateStorage' and 'UseStorage' lines.  If they are present, put two forward slashes - // - at the start of these lines to turn them into comments that the SDK will ignore when running the script.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 17:19:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484275#M5205</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-02-27T17:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484276#M5206</link>
      <description>&lt;P&gt;thanks MartyG , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your attention,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have done it..my problem is this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            PXCMFaceData.RecognitionModuleData recognitionModuleData = faceData.QueryRecognitionModule();&lt;/P&gt;&lt;P&gt;            Int32 nBytes = recognitionModuleData.QueryDatabaseSize();&lt;/P&gt;&lt;P&gt;            Byte[] buffer = new Byte[nBytes];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            // Retrieve the database buffer&lt;/P&gt;&lt;P&gt;           &lt;B&gt; recognitionModuleData.QueryDatabaseBuffer(buffer);&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;           &lt;/B&gt; Console.WriteLine("buffer size &amp;gt;&amp;gt; "+nBytes);   // this wil display some value&lt;/P&gt;&lt;P&gt;&lt;B&gt;            Console.WriteLine("buffer  &amp;gt;&amp;gt; " + buffer); // this always display System.Byte[]&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            // Save the buffer to a file&lt;/P&gt;&lt;P&gt;            File.WriteAllBytes(DatabaseFilename,buffer);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im always getting that System.Byte[] because buffer getting null .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i fix that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just want to use the same recognition database continuously .&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 17:31:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484276#M5206</guid>
      <dc:creator>blakm</dc:creator>
      <dc:date>2017-02-27T17:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484277#M5207</link>
      <description>&lt;P&gt;This sample script has caused problems for a lot of people.  It seems to have defeated every single person who has tried to fix it.  And RealSense face recognition databases are notoriously hard to create and debug as it is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is said that the definition of insanity is trying the same thing repeatedly and hoping for a different result.  I am usually the very last person to give up on a challenge, but I suspect that your life will be happier if you just drop this script and program something else.  Sorry I can't be of more help than that!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 18:16:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484277#M5207</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-02-27T18:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484278#M5208</link>
      <description>&lt;P&gt;Thanks MartyG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope Intel will figure this thing soon..&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 18:31:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484278#M5208</guid>
      <dc:creator>blakm</dc:creator>
      <dc:date>2017-02-27T18:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484279#M5209</link>
      <description>&lt;P&gt;Hi,lakmal_mabm,&lt;/P&gt;&lt;P&gt;Did you solve the problem?I have the same problem.If so how?  &lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Sat, 15 Apr 2017 13:13:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484279#M5209</guid>
      <dc:creator>XShao</dc:creator>
      <dc:date>2017-04-15T13:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484280#M5210</link>
      <description>&lt;P&gt;Someone else was asking about face recognition databases this weekend, so I will point you to that discussion in case there is something in it that helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;</description>
      <pubDate>Sat, 15 Apr 2017 14:02:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484280#M5210</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-04-15T14:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484281#M5211</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt; &lt;P&gt;&amp;nbsp;&lt;/P&gt;Just to update this thread, I have been investigating about this issue and I found that it is a known issue that our engineering team is aware of. However, at this time there is no fix for it.&lt;P&gt;&amp;nbsp;&lt;/P&gt; &lt;P&gt;&amp;nbsp;&lt;/P&gt;Hope this information helps.&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;-Yermi  A.&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2017 20:16:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484281#M5211</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2017-04-20T20:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484282#M5212</link>
      <description>&lt;P&gt;Thanks Yermi  A.&lt;/P&gt;&lt;P&gt;This information is really helpful.Hope to give a solution as soon as possible.I think a lot of developers are waiting......&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 02:15:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484282#M5212</guid>
      <dc:creator>XShao</dc:creator>
      <dc:date>2017-04-21T02:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484283#M5213</link>
      <description>&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any updates for this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After try looking around about Face Recognition, we found some issues:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- We update the SDK and found the documentation was not matches with the Library. Especially in DatabaseBuffer, SetDatabaseBuffer, QueryDatabaseBuffer section&lt;/P&gt;&lt;P&gt;- When load the written database buffer, FPS become droped around 9 FPS and never recognize registered face.&lt;/P&gt;&lt;P&gt;- If we only register 1 face data, It still can recognize other unregistered face (miss recognizing). about 90% of probability&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this can help your team to fix the issues and improve quality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;note : &lt;/P&gt;&lt;P&gt;We use SR300 camera, &lt;/P&gt;&lt;P&gt;SDK version 11.0.28&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2017 03:24:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484283#M5213</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2017-05-30T03:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484284#M5214</link>
      <description>&lt;P&gt;Hi Nur,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt; &lt;P&gt;&amp;nbsp;&lt;/P&gt;Yes, I actually received an update from the Intel RealSense development team. They confirmed that this is indeed a known issue, but unfortunately, there is no plan to fix it.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;I also found that in the &lt;A href="http://registrationcenter-download.intel.com/akdlm/irc_nas/9560/release_notes_RealSense_SDK_2016_Face_Detection_v11.0.pdf"&gt;http://registrationcenter-download.intel.com/akdlm/irc_nas/9560/release_notes_RealSense_SDK_2016_Face_Detection_v11.0.pdf&lt;/A&gt; Intel® RealSenseTM SDK Face Detection &amp;amp; Tracking for Windows* Release (pages 3 and 4), the Face recognition is an alpha feature, so it may or may not work as expected.&lt;P&gt;&amp;nbsp;&lt;/P&gt; &lt;P&gt;&amp;nbsp;&lt;/P&gt;My apologies for any inconvenience it may cause.&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;-Yermi A.   &lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2017 21:33:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484284#M5214</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2017-05-30T21:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484285#M5215</link>
      <description>&lt;P&gt;Thank you for quick response,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope we will receive good news soon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Nur&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2017 02:24:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484285#M5215</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2017-05-31T02:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484286#M5216</link>
      <description>&lt;P&gt;Hi Yermi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any update on this issue? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jayson&lt;/P&gt;</description>
      <pubDate>Sun, 06 Aug 2017 08:37:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484286#M5216</guid>
      <dc:creator>JVale9</dc:creator>
      <dc:date>2017-08-06T08:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: recognitionModuleData.QueryDatabaseBuffer(buffer) return null</title>
      <link>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484287#M5217</link>
      <description>&lt;P&gt;Hi Jayson,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is true that the null problem is a known issue.  Also, development has ceased on the Windows version of the RealSense face module, so a fix is very unlikely to be coming from Intel, unfortunately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The null issue - which seems to be related to the format that face data is saved in - was investigated in a previous discussion that may be helpful to you. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;</description>
      <pubDate>Sun, 06 Aug 2017 10:38:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/recognitionModuleData-QueryDatabaseBuffer-buffer-return-null/m-p/484287#M5217</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-08-06T10:38:02Z</dc:date>
    </item>
  </channel>
</rss>

