<?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 It's really good information, in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094886#M66621</link>
    <description>&lt;P&gt;It's really good information, we need to think about how to use the shadow data. &amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Mar 2016 06:34:21 GMT</pubDate>
    <dc:creator>Ning_R_</dc:creator>
    <dc:date>2016-03-22T06:34:21Z</dc:date>
    <item>
      <title>Black depth image results in sunlit scenes with Intel RealSense R200</title>
      <link>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094879#M66614</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I need to obtain depth images with indoor and outdoor conditions with Intel Real Sense R200 camera. Indoor conditions are quite good but when I try to use under sunlit conditions the image is completely black.&lt;/P&gt;

&lt;P&gt;I've download the last SDK because I read the following lines in the release notes:&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;RSSDK samples do not enforce use of DS4 auto-exposure mode. This will lead to poor depth map results in sunlit scenes.&amp;nbsp;&lt;BR /&gt;
	Recompile sample code with auto-exposure mode enabled&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;This autoexposure mode will work fine with sunlit conditions? In this case, how can I enabled the auto-exposure mode?&lt;/P&gt;

&lt;P&gt;Thank you in advance,&lt;/P&gt;

&lt;P&gt;Manu.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2015 12:47:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094879#M66614</guid>
      <dc:creator>Manuel_P_1</dc:creator>
      <dc:date>2015-12-03T12:47:18Z</dc:date>
    </item>
    <item>
      <title>https://software.intel.com</title>
      <link>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094880#M66615</link>
      <description>&lt;P&gt;&lt;A href="https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?setcolorautoexposure_device_pxccapture.html" target="_blank"&gt;https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?setcolorautoexposure_device_pxccapture.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You can use it like this:&lt;/P&gt;

&lt;PRE style="font-family: Consolas; color: black; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;"&gt;captureManager.device.SetColorAutoExposure(&lt;SPAN style="color:blue;"&gt;true&lt;/SPAN&gt;);
&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Dec 2015 13:25:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094880#M66615</guid>
      <dc:creator>jb455</dc:creator>
      <dc:date>2015-12-03T13:25:32Z</dc:date>
    </item>
    <item>
      <title>Hello,</title>
      <link>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094881#M66616</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I'm trying to use SetColorAutoExposure​() but there is no changes in the depth image between applying or not autoexposure when I run the code.&lt;/P&gt;

&lt;P&gt;My code is the following:&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &lt;EM&gt;m_pp = PXCSenseManager::CreateInstance();&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (!m_pp) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;wprintf_s(L"Unable to create the SenseManager\n");&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;return false;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; m_pp-&amp;gt;EnableStream(PXCCapture::STREAM_TYPE_DEPTH, WIDTH, HEIGHT, 30);&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;/* Initializes the pipeline */&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;m_sts = m_pp-&amp;gt;Init();&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;if (m_sts&amp;lt;PXC_STATUS_NO_ERROR) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;wprintf_s(L"Failed to locate any video stream(s)\n");&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_pp-&amp;gt;Release();&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;return false;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}&amp;nbsp; &amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;m_device = m_pp-&amp;gt;QueryCaptureManager()-&amp;gt;QueryDevice();&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;// Reset all properties&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;m_device-&amp;gt;ResetProperties(PXCCapture::STREAM_TYPE_DEPTH);&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;// Set mirror mode&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;m_device-&amp;gt;SetMirrorMode(PXCCapture::Device::MirrorMode::MIRROR_MODE_HORIZONTAL);&amp;nbsp;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;//Autoexposure&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;&amp;nbsp;m_sts = m_device-&amp;gt;SetColorAutoExposure(true);&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; ............&lt;/P&gt;

&lt;P&gt;Is there any mistake in this code?&lt;/P&gt;

&lt;P&gt;Thank you in advance!&lt;/P&gt;

&lt;P&gt;Br,&lt;/P&gt;

&lt;P&gt;Manu&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2016 18:00:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094881#M66616</guid>
      <dc:creator>Manuel_P_1</dc:creator>
      <dc:date>2016-03-16T18:00:36Z</dc:date>
    </item>
    <item>
      <title>Color auto exposure is not</title>
      <link>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094882#M66617</link>
      <description>&lt;P&gt;Color auto exposure is not correct. The exposure for the dual IR sensors should be a separate function.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 04:19:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094882#M66617</guid>
      <dc:creator>Eli_E_</dc:creator>
      <dc:date>2016-03-17T04:19:54Z</dc:date>
    </item>
    <item>
      <title>Thank you.</title>
      <link>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094883#M66618</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;

&lt;P&gt;Which function I should use in order to set auto mode for indoor outoor depth conditions? I've test outdoor spaces with the auto mode of Intel SDK explorer and the results are very good.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thank in advance,&lt;/P&gt;

&lt;P&gt;Manu&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 10:31:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094883#M66618</guid>
      <dc:creator>Manuel_P_1</dc:creator>
      <dc:date>2016-03-17T10:31:33Z</dc:date>
    </item>
    <item>
      <title>Is it not merely m_device-</title>
      <link>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094884#M66619</link>
      <description>&lt;P&gt;Is it not merely m_device-&amp;gt;&lt;SPAN style="font: 13.33px/normal &amp;quot;Courier New&amp;quot;; text-align: left; color: rgb(0, 0, 0); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; widows: 1; font-size-adjust: none; font-stretch: normal; background-color: rgb(255, 255, 255); -webkit-text-stroke-width: 0px;"&gt;SetDSLeftRight&lt;/SPAN&gt;&lt;SPAN class="highlight" id="highlight" style="font: 13.33px/normal &amp;quot;Courier New&amp;quot;; text-align: left; color: rgb(0, 0, 0); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; widows: 1; font-size-adjust: none; font-stretch: normal; background-color: rgb(255, 255, 64); -webkit-text-stroke-width: 0px;" name="highlight"&gt;AutoExposure&lt;/SPAN&gt;&lt;SPAN style="font: 13.33px/normal &amp;quot;Courier New&amp;quot;; text-align: left; color: rgb(0, 0, 0); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; widows: 1; font-size-adjust: none; font-stretch: normal; background-color: rgb(255, 255, 255); -webkit-text-stroke-width: 0px;"&gt;(true)?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#000000" face="Courier New" size="2"&gt;For some reason the API calls the depth sensor "DSleftright" I guess because the way it obtains depth is by the left and right stereo pair, and "DS" means "depth sensor" I assume.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 21:08:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094884#M66619</guid>
      <dc:creator>kfind1</dc:creator>
      <dc:date>2016-03-17T21:08:20Z</dc:date>
    </item>
    <item>
      <title>Hey guys just an update - I</title>
      <link>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094885#M66620</link>
      <description>&lt;P&gt;Hey guys just an update - I also had black depth images in a sunlit scene and I remembered that blackness can be a manifestation of too high gain or exposure values. First I turned off the R200's built in IR emitter using SetDSEnableEmitter(false). Then I set my gain to 1 (was 4 normally for my R200) and exposure to 5ms, and then later to 1ms, and I got really awesome outdoor depth images. I noticed a funny (but cool) thing with 5ms exposure, where objects in direct sunlight were still too exposed, and were black, but their SHADOWS were returning good range data. This was awesome to play with, I could move my body to occlude the sunlight from something and my shadow allowed for depth data inside my shadowed area. This opens up some interesting possible digital artwork does it not??&lt;/P&gt;

&lt;P&gt;Anyway, I got a nice depth image of the top of a pallet in direct sunlight which you can see below:&lt;/P&gt;

&lt;P&gt;&lt;IMG alt="pallet in direct sunlight - gain of 1, 1ms exposure." src="http://i.imgur.com/yXvz2yi.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Mar 2016 21:41:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094885#M66620</guid>
      <dc:creator>kfind1</dc:creator>
      <dc:date>2016-03-18T21:41:05Z</dc:date>
    </item>
    <item>
      <title>It's really good information,</title>
      <link>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094886#M66621</link>
      <description>&lt;P&gt;It's really good information, we need to think about how to use the shadow data. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2016 06:34:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094886#M66621</guid>
      <dc:creator>Ning_R_</dc:creator>
      <dc:date>2016-03-22T06:34:21Z</dc:date>
    </item>
    <item>
      <title>@Ning R. if you get rich from</title>
      <link>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094887#M66622</link>
      <description>&lt;P&gt;@Ning R. if you get rich from my idea, send me a cheque ;)&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2016 15:52:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Black-depth-image-results-in-sunlit-scenes-with-Intel-RealSense/m-p/1094887#M66622</guid>
      <dc:creator>kfind1</dc:creator>
      <dc:date>2016-03-22T15:52:31Z</dc:date>
    </item>
  </channel>
</rss>

