<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document PUBLIC "-//CNX//DTD CNXML 0.5//EN" "http://cnx.rice.edu/technology/cnxml/schema/dtd/0.5/cnxml_plain.dtd">
<document xmlns="http://cnx.rice.edu/cnxml" xmlns:md="http://cnx.rice.edu/mdml/0.4" xmlns:bib="http://bibtexml.sf.net/" id="id5226232">
<name>Exploring High Dynamic Range Imaging: §2 Background</name>
<metadata>
  <md:version>1.3</md:version>
  <md:created>2006/12/15 01:47:50 US/Central</md:created>
  <md:revised>2007/01/15 17:03:47.327 US/Central</md:revised>
  <md:authorlist>
      <md:author id="tyang">
      <md:firstname>Tianhe</md:firstname>
      
      <md:surname>Yang</md:surname>
      <md:email>tian.yang@rice.edu</md:email>
    </md:author>
      <md:author id="tjohnson">
      <md:firstname>Taylor</md:firstname>
      <md:othername>T</md:othername>
      <md:surname>Johnson</md:surname>
      <md:email>ttj@rice.edu</md:email>
    </md:author>
      <md:author id="snmcgee">
      <md:firstname>Sarah</md:firstname>
      <md:othername>Nicole</md:othername>
      <md:surname>McGee</md:surname>
      <md:email>snmcgee@rice.edu</md:email>
    </md:author>
      <md:author id="rlortman">
      <md:firstname>Robert</md:firstname>
      <md:othername>Lowell</md:othername>
      <md:surname>Ortman</md:surname>
      <md:email>rlortman@rice.edu</md:email>
    </md:author>
  </md:authorlist>

  <md:maintainerlist>
    <md:maintainer id="tyang">
      <md:firstname>Tianhe</md:firstname>
      
      <md:surname>Yang</md:surname>
      <md:email>tian.yang@rice.edu</md:email>
    </md:maintainer>
    <md:maintainer id="tjohnson">
      <md:firstname>Taylor</md:firstname>
      <md:othername>T</md:othername>
      <md:surname>Johnson</md:surname>
      <md:email>ttj@rice.edu</md:email>
    </md:maintainer>
    <md:maintainer id="snmcgee">
      <md:firstname>Sarah</md:firstname>
      <md:othername>Nicole</md:othername>
      <md:surname>McGee</md:surname>
      <md:email>snmcgee@rice.edu</md:email>
    </md:maintainer>
    <md:maintainer id="rlortman">
      <md:firstname>Robert</md:firstname>
      <md:othername>Lowell</md:othername>
      <md:surname>Ortman</md:surname>
      <md:email>rlortman@rice.edu</md:email>
    </md:maintainer>
    <md:maintainer id="richb">
      <md:firstname>Richard</md:firstname>
      <md:othername>G.</md:othername>
      <md:surname>Baraniuk</md:surname>
      <md:email>richb@rice.edu</md:email>
    </md:maintainer>
    <md:maintainer id="Markpanzee">
      <md:firstname>Mark</md:firstname>
      <md:othername>A.</md:othername>
      <md:surname>Davenport</md:surname>
      <md:email>md@rice.edu</md:email>
    </md:maintainer>
  </md:maintainerlist>
  
  

  <md:abstract/>
</metadata>
<content>
<para id="id5226723">There has been much research being done in the
area of HDRI, and the vast majority of this research is focused on
tone mapping. Most of these tone mapping algorithms (often called
“operators”) can be divided into two categories. Global operators
determine how the image is mapped by taking into account all the
values in the high color depth image. Local operators map each
pixel or group of pixels by taking into account a subset of the
information in the high bit depth image.</para>
<para id="id5226731">Global operators are generally fast and often
don’t cause the image to lose detail. Local operators tend to
perform the tone mapping better, compressing contrast to a greater
degree at the expense of slower operation and, in some cases,
blurring of the details or halos around high contrast regions.
Let’s explore both types of operators in MATLAB; the following sections will
introduce algorithms in existence today as well as our own unique
functions and modifications to them.</para>
<para id="id5252173">One thing to take note of before we start is that images in MATLAB are represented as matrices. Color images are made up of three matrices, each describing the intensity of a red, blue, and green component. The brightness values of the elements in these matrices may either be represented in double form in a range from 0 to 1, or with integer values from 0 to 255.</para>
<para id="id5226549">The Stanford Memorial Church image used
throughout this report has been adopted as a standard test image in
many other HDR research articles, and was authored by Paul Debevec.
It is available as a .HDR radiance map for download 
<link src="http://www.debevec.org/Research/HDR/">here</link>.</para>
<para id="id5226572">The .HDR file has been divided into 20 images
for use in this report and can be found in section 8, along with the source code.</para>
</content>
</document>
