<?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 Your OpenCV depth image is in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095294#M66751</link>
    <description>&lt;P&gt;Your OpenCV depth image is only 8 bits. That's why you have a problem.&lt;/P&gt;

&lt;P&gt;Have a look at this video, it shows how to get raw data and convert it into OpenCV:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=wIkIdjN6Oyw" target="_blank"&gt;https://www.youtube.com/watch?v=wIkIdjN6Oyw&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You need to convert the OpenCV image into an 8 bit image in order to display it correctly, but the source should be 16 bits.&lt;/P&gt;</description>
    <pubDate>Tue, 19 Apr 2016 08:21:43 GMT</pubDate>
    <dc:creator>samontab</dc:creator>
    <dc:date>2016-04-19T08:21:43Z</dc:date>
    <item>
      <title>Depth Stream to image</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095292#M66749</link>
      <description>&lt;P&gt;I am trying to convert the depth stream to a Mat image for processing. However I am getting several banding artifacts from the stream. I think it is a precision problem but I am not sure how to do it.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Top Left: Mat type shown using opencv&lt;/P&gt;

&lt;P&gt;Top Right: Stream shown using SDK's UtilRender&lt;/P&gt;

&lt;P&gt;Bottom Frame: Real scene&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="help.png"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/8781i5152B0FBD10B826B/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="help.png" alt="help.png" /&gt;&lt;/span&gt;&lt;BR /&gt;
	&lt;BR /&gt;
	&lt;BR /&gt;
	&lt;BR /&gt;
	This is the code I am using.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;PXCSenseManager *psm = 0;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;psm = PXCSenseManager::CreateInstance();&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;if (!psm){&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;std::cout &amp;lt;&amp;lt; "manager not created";&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;std::cout &amp;lt;&amp;lt; "manager created";&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;psm-&amp;gt;EnableStream(PXCCapture::STREAM_TYPE_COLOR,640,480);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;psm-&amp;gt;EnableStream(PXCCapture::STREAM_TYPE_DEPTH,320,240);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;psm-&amp;gt;Init();&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;UtilRender color_render(L"Color Stream");&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;UtilRender depth_render(L"Depth Stream");&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;PXCImage::ImageData data;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;PXCImage::ImageData data_depth;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;unsigned char *rgb_data;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;float *depth_data;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;IplImage *image = 0;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;CvSize gab_size;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;gab_size.height = 480;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;gab_size.width = 640;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;image = cvCreateImage(gab_size, 8, 3);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;IplImage *depth = 0;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;CvSize gab_size_depth;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;gab_size_depth.height = 240;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;gab_size_depth.width = 320;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;depth = cvCreateImage(gab_size_depth, 8, 1);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;for (;;) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (psm-&amp;gt;AcquireFrame(true)&amp;lt;PXC_STATUS_NO_ERROR) break;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;PXCCapture::Sample *sample = psm-&amp;gt;QuerySample();&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;PXCImage *color_image = sample-&amp;gt;color;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;PXCImage *depth_image = sample-&amp;gt;depth;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;//OpenCv processing- retrieve image in MAT format&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;int height = 480;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;int width = 640;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;color_image-&amp;gt;AcquireAccess(PXCImage::ACCESS_READ_WRITE, PXCImage::PIXEL_FORMAT_RGB24, &amp;amp;data);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;depth_image-&amp;gt;AcquireAccess(PXCImage::ACCESS_READ_WRITE, &amp;amp;data_depth);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;rgb_data = data.planes[0];&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;rgb_data = data.planes[0];&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (int y = 0; y&amp;lt;480; y++)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (int x = 0; x&amp;lt;640; x++)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (int k = 0; k&amp;lt;3; k++)&lt;BR /&gt;
	&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;BR /&gt;
	&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;image-&amp;gt;imageData[y * 640 * 3 + x * 3 + k] = rgb_data[y * 640 * 3 + x * 3 + k];&lt;BR /&gt;
	&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;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;short* depth_data = (short*)data_depth.planes[0]; //&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (int y = 0; y&amp;lt;240; y++)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (int x = 0; x&amp;lt;320; x++)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;depth-&amp;gt;imageData[y * 320 + x] = depth_data[y * 320 + x];&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;color_image-&amp;gt;ReleaseAccess(&amp;amp;data);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;depth_image-&amp;gt;ReleaseAccess(&amp;amp;data_depth);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;cv::Mat rgb(image);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;imshow("color", rgb);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;cv::Mat dep(depth);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;imshow("depth_cv2", dep);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (cvWaitKey(10) &amp;gt;= 0)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;break;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (!color_render.RenderFrame(color_image)) break;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (!depth_render.RenderFrame(depth_image)) break;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;psm-&amp;gt;ReleaseFrame();&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 07:19:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095292#M66749</guid>
      <dc:creator>lee_j_2</dc:creator>
      <dc:date>2016-04-19T07:19:40Z</dc:date>
    </item>
    <item>
      <title>A couple of observations:</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095293#M66750</link>
      <description>&lt;P&gt;A couple of observations:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;you are getting your depth data as floats and then casting to shorts. That should be ok for the values you are expecting. But you could just get the data &lt;SPAN class="f_CodeExample"&gt;as unsigned shorts instead of floats by &lt;/SPAN&gt;using &lt;SPAN class="f_CodeExample"&gt;PIXEL_FORMAT_DEPTH in the AquireAccess() call.&lt;/SPAN&gt;&lt;/LI&gt;
	&lt;LI&gt;but your actual problem happens when you try to put 16bit shorts into an 8bit OpenCV mat. It looks like it's just using the bottom 8bit of your 16bit number, leading to the "banding" you experience.So instead, you should create a 16bit unsigned cv mat.&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 19 Apr 2016 07:48:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095293#M66750</guid>
      <dc:creator>Henning_J_</dc:creator>
      <dc:date>2016-04-19T07:48:06Z</dc:date>
    </item>
    <item>
      <title>Your OpenCV depth image is</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095294#M66751</link>
      <description>&lt;P&gt;Your OpenCV depth image is only 8 bits. That's why you have a problem.&lt;/P&gt;

&lt;P&gt;Have a look at this video, it shows how to get raw data and convert it into OpenCV:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=wIkIdjN6Oyw" target="_blank"&gt;https://www.youtube.com/watch?v=wIkIdjN6Oyw&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You need to convert the OpenCV image into an 8 bit image in order to display it correctly, but the source should be 16 bits.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 08:21:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095294#M66751</guid>
      <dc:creator>samontab</dc:creator>
      <dc:date>2016-04-19T08:21:43Z</dc:date>
    </item>
    <item>
      <title>Okay thanks above.</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095295#M66752</link>
      <description>&lt;P&gt;Okay thanks above.&lt;BR /&gt;
	&lt;BR /&gt;
	I solved the issue.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 09:06:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095295#M66752</guid>
      <dc:creator>lee_j_2</dc:creator>
      <dc:date>2016-04-19T09:06:40Z</dc:date>
    </item>
    <item>
      <title>Hi Sebastian,</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095296#M66753</link>
      <description>&lt;P style="word-wrap: break-word; font-size: 13.008px; line-height: 19.512px;"&gt;Hi Sebastian,&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 13.008px; line-height: 19.512px;"&gt;I've tried to use the code you explain on this video:&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 13.008px; line-height: 19.512px;"&gt;&lt;A href="https://www.youtube.com/watch?v=wIkIdjN6Oyw" rel="nofollow"&gt;https://www.youtube.com/watch?v=wIkIdjN6Oyw&lt;/A&gt;&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 13.008px; line-height: 19.512px;"&gt;However, it seems to work just for a close capture, what I mean is that for objects further than around 50 centimeters from the camera the depth data is the same, as the objects were all at the same distance. I'm working on a project where I need to get depth data from a desk, so the camera should be place considerably far from the desk to get all the surface.&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 13.008px; line-height: 19.512px;"&gt;I added these lines to your code:&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 13.008px; line-height: 19.512px;"&gt;&amp;nbsp;-&amp;nbsp;UtilRender depth_render(L"Depth Stream"); // right afer the psm-&amp;gt;Init();&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 13.008px; line-height: 19.512px;"&gt;&amp;nbsp;-&amp;nbsp;if (!depth_render.RenderFrame(depth_image)) break; // before releasing the frame (depth_image is a pointer to sample-&amp;gt;depth)&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 13.008px; line-height: 19.512px;"&gt;With these two additional lines I get the raw depth stream shown, and the raw stream has the exactly depth data independently or the distance.&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 13.008px; line-height: 19.512px;"&gt;I tried to figure out why the Mat image is not getting the right information but didn't find an answer. Can you give me a hand?&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2016 04:41:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095296#M66753</guid>
      <dc:creator>lucas_m_1</dc:creator>
      <dc:date>2016-04-28T04:41:17Z</dc:date>
    </item>
    <item>
      <title>First, these cameras will</title>
      <link>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095297#M66754</link>
      <description>&lt;P&gt;First, these cameras will allow you to capture depth of things relatively close to them.&lt;/P&gt;

&lt;P&gt;F200's official depth sensing range is 0.2–1.2 metres. Other models such as the SR300 has a 60% improved range compared to the F200, and the R200 can detect a bit further away since it also uses stereo, and not only active sensing.&lt;/P&gt;

&lt;P&gt;So, you can't really measure things farther away than say, 1 or 2 metres at maximum. And the farther away you are, the worse the data is. This is true for any similar technology, including Kinect v2 for example, which at most can get up to 4m, with much, much more powerful IR emitters.&lt;/P&gt;

&lt;P&gt;When you say "exactly the same distance", do you mean visually they look similar in the rendered window?, or you print the values and they are all identical?. If you are just visually comparing them, they will look the same, but are in reality different values. Because of how depth is represented, you see big changes from black to grey when the camera is close to an object, but little or no visual variation in white when it is far away. So, make sure you print the values and not rely on visual inspection. Have a look here where I re-encode the depth values linearly, you can actually see differences in depth far away once you do that:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://www.samontab.com/web/2015/11/interfacing-intel-realsense-3d-camera-with-google-camera-lens-blur/" target="_blank"&gt;http://www.samontab.com/web/2015/11/interfacing-intel-realsense-3d-camera-with-google-camera-lens-blur/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Now, it may be possible that the SDK returns a constant depth value for things that are very far away. You should just ignore this in general, as the depth data is not good at all. Basically, treat 0s and 255s (or whatever edge cases you have) as special cases and ignore these depth values in the normal application. This is normal, and part of any 3D sensing device. 3D data from a real world sensor in general is noisy, and is not continuous, i.e. there are 'holes' in the data.&lt;/P&gt;

&lt;P&gt;Also, you can control how far away the camera can see by tweaking its active parameters. Some settings have a trade-off, for example, it will take longer to detect objects that are far away, so they can't be moving, etc. Have a look here for more info about this:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/forums/realsense/topic/537872" target="_blank"&gt;https://software.intel.com/en-us/forums/realsense/topic/537872&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;And finally, make sure you are requesting and processing the correct format for your depth image. Depth can come in different formats, such as 8bit or 10bit integers, 32bit floating point, etc.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2016 05:22:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Depth-Stream-to-image/m-p/1095297#M66754</guid>
      <dc:creator>samontab</dc:creator>
      <dc:date>2016-04-28T05:22:00Z</dc:date>
    </item>
  </channel>
</rss>

