<?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 Quote:samontab wrote: in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093239#M66034</link>
    <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;samontab wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Ignore any value of 0, and then get the smaller value in the frame. That's the closest point.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp;I want to&amp;nbsp;convert&amp;nbsp;the 16-bit depth data to&amp;nbsp;millimeter.what is the&amp;nbsp;formula? Is that " *0.0001"? R200 /outdoor.Thank you for helping me.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Aug 2016 07:08:20 GMT</pubDate>
    <dc:creator>qyan</dc:creator>
    <dc:date>2016-08-29T07:08:20Z</dc:date>
    <item>
      <title>Depth Measurement</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093234#M66029</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I'm trying to read depth measurement, I tried using sample-&amp;gt;depth.&lt;BR /&gt;
	But I can`t figure out the depth format/how to interpret the data.&lt;/P&gt;

&lt;P&gt;I'm trying to analyse all the depth for a single frame and find the closest point in the frame.&lt;/P&gt;

&lt;P&gt;Any help would be appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 21:55:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093234#M66029</guid>
      <dc:creator>mathieu_a_</dc:creator>
      <dc:date>2016-01-18T21:55:39Z</dc:date>
    </item>
    <item>
      <title>Ignore any value of 0, and</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093235#M66030</link>
      <description>&lt;P&gt;Ignore any value of 0, and then get the smaller value in the frame. That's the closest point.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 01:38:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093235#M66030</guid>
      <dc:creator>samontab</dc:creator>
      <dc:date>2016-01-19T01:38:09Z</dc:date>
    </item>
    <item>
      <title>I'm using the following code</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093236#M66031</link>
      <description>&lt;P&gt;I'm using the following code to print the 250th depth value, but I can`t figure out the unit used to represent the depth.&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;PXCCapture::Sample *sample = sm-&amp;gt;QuerySample();
PXCImage *depthFrame = sample-&amp;gt;depth;
PXCImage::ImageData imgData = {};
unsigned short* points_buf;

depthFrame-&amp;gt;AcquireAccess(PXCImage::ACCESS_READ, PXCImage::PIXEL_FORMAT_DEPTH_RAW, &amp;amp;imgData);
			
points_buf = (unsigned short*)imgData.planes[0];
if (sample-&amp;gt;depth)
{
	pxcCHAR line[256];
			
	swprintf_s&amp;lt;sizeof(line) / sizeof(line[0])&amp;gt;(line, L"Depth=%d", points_buf[250]);
	UpdateStatus(line);
}

/* Resume next frame processing */
sm-&amp;gt;ReleaseFrame();&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 16:44:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093236#M66031</guid>
      <dc:creator>mathieu_a_</dc:creator>
      <dc:date>2016-01-19T16:44:13Z</dc:date>
    </item>
    <item>
      <title>That format is device</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093237#M66032</link>
      <description>&lt;P&gt;That format is device specific. Try using either &lt;SPAN class="f_CodeExample"&gt;PIXEL_FORMAT_DEPTH or PIXEL_FORMAT_DEPTH_F32. Those are in mm.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="f_CodeExample"&gt;Have a look here:&lt;/SPAN&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?pixelformat_pxcimage.html" target="_blank"&gt;https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?pixelformat_pxcimage.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2016 23:00:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093237#M66032</guid>
      <dc:creator>samontab</dc:creator>
      <dc:date>2016-01-20T23:00:43Z</dc:date>
    </item>
    <item>
      <title>   I want to convert the 16</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093238#M66033</link>
      <description>&lt;P&gt;&amp;nbsp; &amp;nbsp;I want to&amp;nbsp;convert&amp;nbsp;the 16-bit depth data to&amp;nbsp;millimeter.what is the&amp;nbsp;formula? Is that " *0.0001"? Thank you for helping me!&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2016 06:59:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093238#M66033</guid>
      <dc:creator>qyan</dc:creator>
      <dc:date>2016-08-29T06:59:14Z</dc:date>
    </item>
    <item>
      <title>Quote:samontab wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093239#M66034</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;samontab wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Ignore any value of 0, and then get the smaller value in the frame. That's the closest point.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp;I want to&amp;nbsp;convert&amp;nbsp;the 16-bit depth data to&amp;nbsp;millimeter.what is the&amp;nbsp;formula? Is that " *0.0001"? R200 /outdoor.Thank you for helping me.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2016 07:08:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Measurement/m-p/1093239#M66034</guid>
      <dc:creator>qyan</dc:creator>
      <dc:date>2016-08-29T07:08:20Z</dc:date>
    </item>
  </channel>
</rss>

