<?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: exposure level in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/exposure-level/m-p/605843#M12532</link>
    <description>&lt;P&gt;I believe Librealsense's IR control options mostly relate to the R200 model of camera.  Instead, the SR300 camera is provided with commands to control the camera's range automatically.  These include:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sr300_auto_range_enable_motion_versus_range &lt;/P&gt;&lt;P&gt;sr300_auto_range_enable_laser             &lt;/P&gt;&lt;P&gt;sr300_auto_range_min_motion_versus_range    &lt;/P&gt;&lt;P&gt;sr300_auto_range_max_motion_versus_range    &lt;/P&gt;&lt;P&gt;sr300_auto_range_start_motion_versus_range   &lt;/P&gt;&lt;P&gt;sr300_auto_range_min_laser                    &lt;/P&gt;&lt;P&gt;sr300_auto_range_max_laser                    &lt;/P&gt;&lt;P&gt;sr300_auto_range_start_laser                    ,&lt;/P&gt;&lt;P&gt;sr300_auto_range_upper_threshold             &lt;/P&gt;&lt;P&gt;sr300_auto_range_lower_threshold    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It has the accompanying note:  Configures SR300 depth auto-range setting.  Should not be used directly but through the \c rs_apply_ivcam_preset method in rsutil.h.*/&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2017 10:52:35 GMT</pubDate>
    <dc:creator>MartyG</dc:creator>
    <dc:date>2017-06-09T10:52:35Z</dc:date>
    <item>
      <title>exposure level</title>
      <link>https://community.intel.com/t5/Items-with-no-label/exposure-level/m-p/605840#M12529</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does librealsense provides any APIs for adjusting SR300 IR camera's exposure level/parameters ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you !&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 09:32:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/exposure-level/m-p/605840#M12529</guid>
      <dc:creator>LPaul2</dc:creator>
      <dc:date>2017-06-09T09:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: exposure level</title>
      <link>https://community.intel.com/t5/Items-with-no-label/exposure-level/m-p/605841#M12530</link>
      <description>&lt;P&gt;A Librealsense script called cpp-config-ui contains code for adjusting the exposure.  Lines 378 to 397 of the script should be particularly interesting to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/blob/master/examples/cpp-config-ui.cpp"&gt;https://github.com/IntelRealSense/librealsense/blob/master/examples/cpp-config-ui.cpp&lt;/A&gt; librealsense/cpp-config-ui.cpp at master · IntelRealSense/librealsense · GitHub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although the script uses auto-exposure, you should be able to convert it to manual exposure control by changing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case RS_OPTION_COLOR_ENABLE_AUTO_EXPOSURE: return set_pu(handle, subdevice, ct_unit, UVC_CT_AE_MODE_CONTROL, value ? 2 : 1); // Modes - (1: manual) (2: auto) (4: shutter priority) (8: aperture priority)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case RS_OPTION_COLOR_EXPOSURE: return set_pu(handle, subdevice, ct_unit, UVC_CT_AE_MODE_CONTROL, value ? 2 : 1); // Modes - (1: manual) (2: auto) (4: shutter priority) (8: aperture priority)&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 09:41:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/exposure-level/m-p/605841#M12530</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-06-09T09:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: exposure level</title>
      <link>https://community.intel.com/t5/Items-with-no-label/exposure-level/m-p/605842#M12531</link>
      <description>&lt;P&gt;Hi MartyG,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i've checked the example cpp-config-ui, it shows a demo to control the exposure for RGB camera,&lt;/P&gt;&lt;P&gt;Does IR camera as well provides some APIs like that ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 10:22:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/exposure-level/m-p/605842#M12531</guid>
      <dc:creator>LPaul2</dc:creator>
      <dc:date>2017-06-09T10:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: exposure level</title>
      <link>https://community.intel.com/t5/Items-with-no-label/exposure-level/m-p/605843#M12532</link>
      <description>&lt;P&gt;I believe Librealsense's IR control options mostly relate to the R200 model of camera.  Instead, the SR300 camera is provided with commands to control the camera's range automatically.  These include:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sr300_auto_range_enable_motion_versus_range &lt;/P&gt;&lt;P&gt;sr300_auto_range_enable_laser             &lt;/P&gt;&lt;P&gt;sr300_auto_range_min_motion_versus_range    &lt;/P&gt;&lt;P&gt;sr300_auto_range_max_motion_versus_range    &lt;/P&gt;&lt;P&gt;sr300_auto_range_start_motion_versus_range   &lt;/P&gt;&lt;P&gt;sr300_auto_range_min_laser                    &lt;/P&gt;&lt;P&gt;sr300_auto_range_max_laser                    &lt;/P&gt;&lt;P&gt;sr300_auto_range_start_laser                    ,&lt;/P&gt;&lt;P&gt;sr300_auto_range_upper_threshold             &lt;/P&gt;&lt;P&gt;sr300_auto_range_lower_threshold    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It has the accompanying note:  Configures SR300 depth auto-range setting.  Should not be used directly but through the \c rs_apply_ivcam_preset method in rsutil.h.*/&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 10:52:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/exposure-level/m-p/605843#M12532</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2017-06-09T10:52:35Z</dc:date>
    </item>
  </channel>
</rss>

