High Dynamic Range Imaging

Size: px
Start display at page:

Download "High Dynamic Range Imaging"

Transcription

1 High Dynamic Range Imaging 1

2 2

3 Lecture Topic Discuss the limits of the dynamic range in current imaging and display technology Solutions 1. High Dynamic Range (HDR) Imaging Able to image a larger dynamic range of a scene using multiple photos 2. Tone Mapping or Tone Reproduction Addresses how to display an HDR image Actually doesn t overcome the display range, but produces compelling mappings of HDR that fit into the range of the display We call this process tone mapping 3

4 Papers We will discuss two papers in this lecture: 1. Paul Debevec and Jitendra Malik Recovering High Dynamic Range Radiance Maps from Photographs - Paul is now a famous Graphics guy - Prof. Malik has been a famous Computer vision guy for years and 2. Erik Reinhard and others Photographic Tone Reproduction for Digital Images - Erik s paper made Tone Mapping a hot topic again - Mainly because Paul made HDR realizable by photographs - Erik recently authored a book on Tone Mapping 4

5 HDR SIGGRAPH, 1997 Paul Debevec; wrote paper while a student at Berkley, then Research A/Prof and Assoc Director Graphics Lab U of Southern California now, leading Google Daydream Idea Problem with Film and Digital Cameras They have limited dynamic range; have non-linear response curves to exposure (scene radiance) Solution Use multiple photos to recover the radiance of the scene. Require us to compute the non-linear response curve of the imaging device Result: able to determine a high dynamic range of irradiance falling on the sensor s pixel... 5

6 Scene Radiance Amount of radiance in a 3D scene varies greatly Each point is a different radiance reading 6

7 Problem Film and digital cameras cannot record the full dynamic range* of the radiance in a scene Fundamental limitation of film Fundamental limitation of CCD sensor *recall: dynamic range is the range of min-radiance to max-radiance 7

8 Problem Film and digital cameras cannot record the full dynamic range* of the radiance in a scene Fundamental limitation of film Fundamental limitation of CCD sensor Photographer s must make a decision Set the exposure to capture a portion of the range of the scene Exposure too short: low radiance all map to 0 Exposure too long: high radiance all map to 255 (max intensity) *recall: dynamic range is the range of min-radiance to max-radiance 8

9 Example: Long exposure Real world radiance Picture intensity 10-6 dynamic range Pixel value 0 to 255 We can see more things in the room, but the scene outside the window is too bright. Short Longer 9

10 Example: Short exposure Real world radiance Picture intensity Short 10 6 dynamic range Pixel value 0 to 255 Here we can see outside the window, but the things in the room are too dark. 10

11 Question Paul addressed: How does radiance map to a pixel value z? 1) 2) 3) 4) Many steps from the scene to the final pixel value z. 5) 6) 7) 12 bits 8 bits 11

12 Many Steps 1) 2) 3) 4) 1. Scene generates radiance L 2. This can be attenuated through a lens, then hits the imaging devices sensor (now we call it irradiance, E) 3. E is exposed for Δt seconds The product (E Δt) is the exposure 4. Film has a response curve to E Δt This response is often not linear; The development process may also not be linear. 5. If we are using a digital camera, the CCD response is linear! 6. However, this response is quantized 7. And typically (almost always) 6 is remapped through a non-curve to behave like film, so even though the CCD is linear, we get back a non-linear response! 12 bits 8 bits 5) 6) 7) 12

13 Non-linear Response Curve Film/Digital cameras have non-linear responses in terms of exposure (E Δt) For a variety of reasons (see paper) The question is, can we find the response curve as follows: Z ij = f(e i Δt j ) Where Z ij is the final pixel value (from 0-255) at pixel i, E i is the irradiance at i, and Δt j is the shutter speed. Thus: E i Δt j is the exposure of light on pixel i 13

14 How to Change Exposure Remember: Ways to change exposure Shutter speed Aperture Natural density filters We will use shutter speed, but there are other options. Follow-on papers used different techniques (filters). 14

15 Use Shutter speed to control exposure Note: shutter times usually obey a power series each stop is a factor of 2 Camera settings say: ¼, 1/8, 1/15, 1/30, 1/60, 1/125, 1/250, 1/500, 1/1000 sec In reality is: ¼, 1/8, 1/16, 1/32, 1/64, 1/128, 1/256, 1/512, 1/1024 sec 15

16 Exposure and mapping There is a point where too much exposure saturates the CCD (or film) and we get a peak... (255 white) 16

17 Varying shutter speeds 17

18 Saturation, but other pixels OK Not saturated at lower exposures, but other pixels too dark 18

19 Idea of the paper Recall: E i is irradiance falling on pixel i Δt j is the shutter open time for a setting j Z ij is a pixel response at pixel location i, given exposure time j 1. E (irradiance) doesn t change, it is the same at pixel i in all photo taken of the same scene in the same position 2. Amount of light over time (exposure), E Δt, does change, based on Δt. But we know Δt, it s the shutter speed 3. We also know z, is the pixel value - this is the image we get 4. SO, we need to solve for f, actually, we solve for f -1 Once we have f, we can solve for E (I ve dropped the subscripts): E Δt = f -1 (z) -> E = f -1 (z)/δt 19

20 Math for recovering response curve This is a regularization term makes the solution smooth where 20

21 Idea behind the math Pixel x, +, o are 3 different pixels under going 5 exposure levels. The are map to different pixel values due to the E falling on each pixel, and the curve g. g should be a smooth curve. What is unknown? E. Lets adjust the E s so they make a smooth response curve g. 21

22 Idea behind the math Adjust for o Adjust for x Adjust for + Curve g Adjust E of each pixel so we get a smooth curve g. 22

23 Recovering response curve The solution can be only up to a scale, add a constraint Add a hat weighting function 23

24 Recovered response function Recover each R, G, B channel separately. 24

25 Constructing HDR radiance map combine pixels to reduce noise and obtain a more reliable estimation 25

26 Reconstructed radiance map This is the radiance map of the scene. Note the range is very detailed (a floating point image). Dynamic range is: to Assume that is the minimum quantization size, Then we have a range of 1 to much higher than

27 What is this for? Human perception Vision/graphics applications 27

28 A side note: Easier HDR reconstruction raw image = 12-bit CCD snapshot If we could get access to the RAW CCD output, it would be easy to construct an HDR. Just use multiple exposures. RAW CCD response is linear with exposure (more light, more voltage) 28

29 Easier HDR reconstruction Exposure (Y) This is the response for the RAW CCD output, which responses linearly to exposure. The question is how to get this information? Unfortunately commodity cameras don t allow you access to the direct output. Yij=E i * Δt j Δt 29

30 HDR Summary This work made HDR practical and popular Debevec s website has many useful links and software Idea is quite simple Use multiple exposure to capture dynamic range Need to overcome cameras non-linear response Mathematical solution provided (code available) Paper is very well done 30

31 Tone Mapping SIGGRAPH, 2002 Eric Reinhard (German), PhD at Bristol (Britain) This paper while a post-doc at Utah (US) Now back as a Lecturer at Bristol, after short time at U. of Central Florida Idea HDR is nice, but monitor is still limited How can we map the HDR back to finite range Idea considers how real photographers do this. Some parts of his algorithm are inspired from real photographic methods proposed by the famous photography Ansel Adams 31

32 Motivation Linear remapping of HDR for display. Erik s remapping of HDR for display. 32

33 Ansels Adams Famous American photographer (known for high-contrast outdoor scenes). Developed the zone system for photography. 33

34 Zone System Scene is divided into 11 Zones Each zone represents a level of dynamic range As a photographer, you d like to capture as many zones in your photograph as possible. Adams says you need at least 9 zones to capture the detail of a scene. More than 9 levels, you ll get saturation or a dark image. 34

35 Zone Approach Photographer selects region that is middle grey (for a given exposure). This is subjective: darker scenes middle grey will be darker than a lighter scene. To describe the scenes we use the term key. Measurement made with a photometer. Photography selects the brightest and darkest regions. Measuring these regions on a photometer gives an estimate of the dynamic range. 35

36 Controlling range and tricks Using these readings compute range If you have nine zones in your range, you can capture the detail The middle gray should be roughly 18% brightness level of the final output Photography can adjust the middle grey level This card is printed to be gray, the photography adjust the exposure until this gray becomes the desired middle grey. 36

37 If you can t fit all in Dodge and Burn If the dynamic range is beyond 9 levels We will have regions too dark or too bright in the image You can control the final result through dodging and burning For film photography During development you control the light through the negative, to make parts brighter (burn) or darker (dodging) 37

38 Terms Recap: Terms used in the paper: Zone: 11 print zones related logarithmically to scene luminance and sensor irradiance. Dynamic Range for Photographers: We can use the zones to calc the difference between highest and lowest scene zones (photographic dynamic range) Key: Subjective measure of light (high key) or dark (low key). Dodging and Burning: Print technique where more light is exposed to a region to dodge or withhold light from that area or burn (darken). 38

39 Erik s approach Algorithm: Use the log-average luminance to find the "key" of a scene Automatic dodging a burning (as in photography): all portions of the print receive difference exposure time 39

40 Tone Mapping Log Average: Scale Luminance's to a key: a is called the key value : a=.18 would similar to what Ansels would recommend. L w (x,y) is the world luminance i.e. HDR data 40

41 Tone Mapping 41

42 Other mappings Compress the high luminance: Burning high luminance in a controlled fashion: Where L 2 white is the desired max white level. 42

43 Controlling Max-White 43

44 Spatially Varying Operator Dodging and Burning Typically applied to regions bounded by large contrasts The size of a local region is estimated using a measure of local contrast; computed at multiple spatial scales At each spatial scale, a center-surround function is implemented by subtracting two Gaussian blurred images. Gaussian profiles are of the form: 44

45 Spatially Varying Operators Response function of image location, scale, and luminance distribution L: Center-surround function: a = key value, phi is the sharpening parameter Provides a local average of the luminance around (x,y) roughly in a disc of radius s. V 2 operates on a slightly larger area but same scale 45

46 Spatially Varying Operators 46

47 Spatially Varying Operators To choose the largest neighborhood around a pixel with fairly even luminance: (start from the lowest scale and stop when this is satisfied) The global operator is converted to a local operator by replacing L with V 1 47

48 Spatially Varying Operators 48

49 Example 49

50 More Results (see slide 6 to compare against Debevec s linear scaling) 50

51 Scene Radiance Amount of radiance in a 3D scene varies greatly Each point is a different radiance reading 51

52 Tone Mapping Summary Consider real photographic techniques in mapping radiance to finite range Allows people to think in photographic terms: key, zone, middle grey Introduce local operators to control burn and dodge Overcome effects of saturation or too dark Most previous tone-mapping approaches were for computer generated results not photos 52

High dynamic range imaging and tonemapping

High dynamic range imaging and tonemapping High dynamic range imaging and tonemapping http://graphics.cs.cmu.edu/courses/15-463 15-463, 15-663, 15-862 Computational Photography Fall 2017, Lecture 12 Course announcements Homework 3 is out. - Due

More information

Why learn about photography in this course?

Why learn about photography in this course? Why learn about photography in this course? Geri's Game: Note the background is blurred. - photography: model of image formation - Many computer graphics methods use existing photographs e.g. texture &

More information

lecture 24 image capture - photography: model of image formation - image blur - camera settings (f-number, shutter speed) - exposure - camera response

lecture 24 image capture - photography: model of image formation - image blur - camera settings (f-number, shutter speed) - exposure - camera response lecture 24 image capture - photography: model of image formation - image blur - camera settings (f-number, shutter speed) - exposure - camera response - application: high dynamic range imaging Why learn

More information

The ultimate camera. Computational Photography. Creating the ultimate camera. The ultimate camera. What does it do?

The ultimate camera. Computational Photography. Creating the ultimate camera. The ultimate camera. What does it do? Computational Photography The ultimate camera What does it do? Image from Durand & Freeman s MIT Course on Computational Photography Today s reading Szeliski Chapter 9 The ultimate camera Infinite resolution

More information

High Dynamic Range Images : Rendering and Image Processing Alexei Efros. The Grandma Problem

High Dynamic Range Images : Rendering and Image Processing Alexei Efros. The Grandma Problem High Dynamic Range Images 15-463: Rendering and Image Processing Alexei Efros The Grandma Problem 1 Problem: Dynamic Range 1 1500 The real world is high dynamic range. 25,000 400,000 2,000,000,000 Image

More information

Realistic Image Synthesis

Realistic Image Synthesis Realistic Image Synthesis - HDR Capture & Tone Mapping - Philipp Slusallek Karol Myszkowski Gurprit Singh Karol Myszkowski LDR vs HDR Comparison Various Dynamic Ranges (1) 10-6 10-4 10-2 100 102 104 106

More information

Distributed Algorithms. Image and Video Processing

Distributed Algorithms. Image and Video Processing Chapter 7 High Dynamic Range (HDR) Distributed Algorithms for Introduction to HDR (I) Source: wikipedia.org 2 1 Introduction to HDR (II) High dynamic range classifies a very high contrast ratio in images

More information

! High&Dynamic!Range!Imaging! Slides!from!Marc!Pollefeys,!Gabriel! Brostow!(and!Alyosha!Efros!and! others)!!

! High&Dynamic!Range!Imaging! Slides!from!Marc!Pollefeys,!Gabriel! Brostow!(and!Alyosha!Efros!and! others)!! ! High&Dynamic!Range!Imaging! Slides!from!Marc!Pollefeys,!Gabriel! Brostow!(and!Alyosha!Efros!and! others)!! Today! High!Dynamic!Range!Imaging!(LDR&>HDR)! Tone!mapping!(HDR&>LDR!display)! The!Problem!

More information

Tonemapping and bilateral filtering

Tonemapping and bilateral filtering Tonemapping and bilateral filtering http://graphics.cs.cmu.edu/courses/15-463 15-463, 15-663, 15-862 Computational Photography Fall 2018, Lecture 6 Course announcements Homework 2 is out. - Due September

More information

BBM 413! Fundamentals of! Image Processing!

BBM 413! Fundamentals of! Image Processing! BBM 413! Fundamentals of! Image Processing! Today s topics" Point operations! Histogram processing! Erkut Erdem" Dept. of Computer Engineering" Hacettepe University" "! Point Operations! Histogram Processing!

More information

BBM 413 Fundamentals of Image Processing. Erkut Erdem Dept. of Computer Engineering Hacettepe University. Point Operations Histogram Processing

BBM 413 Fundamentals of Image Processing. Erkut Erdem Dept. of Computer Engineering Hacettepe University. Point Operations Histogram Processing BBM 413 Fundamentals of Image Processing Erkut Erdem Dept. of Computer Engineering Hacettepe University Point Operations Histogram Processing Today s topics Point operations Histogram processing Today

More information

BBM 413 Fundamentals of Image Processing. Erkut Erdem Dept. of Computer Engineering Hacettepe University. Point Operations Histogram Processing

BBM 413 Fundamentals of Image Processing. Erkut Erdem Dept. of Computer Engineering Hacettepe University. Point Operations Histogram Processing BBM 413 Fundamentals of Image Processing Erkut Erdem Dept. of Computer Engineering Hacettepe University Point Operations Histogram Processing Today s topics Point operations Histogram processing Today

More information

Figure 1 HDR image fusion example

Figure 1 HDR image fusion example TN-0903 Date: 10/06/09 Using image fusion to capture high-dynamic range (hdr) scenes High dynamic range (HDR) refers to the ability to distinguish details in scenes containing both very bright and relatively

More information

Gray Point (A Plea to Forget About White Point)

Gray Point (A Plea to Forget About White Point) HPA Technology Retreat Indian Wells, California 2016.02.18 Gray Point (A Plea to Forget About White Point) George Joblove 2016 HPA Technology Retreat Indian Wells, California 2016.02.18 2016 George Joblove

More information

High Dynamic Range Images

High Dynamic Range Images High Dynamic Range Images TNM078 Image Based Rendering Jonas Unger 2004, V1.2 1 Introduction When examining the world around us, it becomes apparent that the lighting conditions in many scenes cover a

More information

Tone mapping. Digital Visual Effects, Spring 2009 Yung-Yu Chuang. with slides by Fredo Durand, and Alexei Efros

Tone mapping. Digital Visual Effects, Spring 2009 Yung-Yu Chuang. with slides by Fredo Durand, and Alexei Efros Tone mapping Digital Visual Effects, Spring 2009 Yung-Yu Chuang 2009/3/5 with slides by Fredo Durand, and Alexei Efros Tone mapping How should we map scene luminances (up to 1:100,000) 000) to display

More information

Zone. ystem. Handbook. Part 2 The Zone System in Practice. by Jeff Curto

Zone. ystem. Handbook. Part 2 The Zone System in Practice. by Jeff Curto A Zone S ystem Handbook Part 2 The Zone System in Practice by This handout was produced in support of s Camera Position Podcast. Reproduction and redistribution of this document is fine, so long as the

More information

Cameras. Outline. Pinhole camera. Camera trial #1. Pinhole camera Film camera Digital camera Video camera High dynamic range imaging

Cameras. Outline. Pinhole camera. Camera trial #1. Pinhole camera Film camera Digital camera Video camera High dynamic range imaging Outline Cameras Pinhole camera Film camera Digital camera Video camera High dynamic range imaging Digital Visual Effects, Spring 2006 Yung-Yu Chuang 2006/3/1 with slides by Fedro Durand, Brian Curless,

More information

High-Dynamic-Range Imaging & Tone Mapping

High-Dynamic-Range Imaging & Tone Mapping High-Dynamic-Range Imaging & Tone Mapping photo by Jeffrey Martin! Spatial color vision! JPEG! Today s Agenda The dynamic range challenge! Multiple exposures! Estimating the response curve! HDR merging:

More information

Capturing Light in man and machine. Some figures from Steve Seitz, Steve Palmer, Paul Debevec, and Gonzalez et al.

Capturing Light in man and machine. Some figures from Steve Seitz, Steve Palmer, Paul Debevec, and Gonzalez et al. Capturing Light in man and machine Some figures from Steve Seitz, Steve Palmer, Paul Debevec, and Gonzalez et al. 15-463: Computational Photography Alexei Efros, CMU, Fall 2005 Image Formation Digital

More information

MODIFICATION OF ADAPTIVE LOGARITHMIC METHOD FOR DISPLAYING HIGH CONTRAST SCENES BY AUTOMATING THE BIAS VALUE PARAMETER

MODIFICATION OF ADAPTIVE LOGARITHMIC METHOD FOR DISPLAYING HIGH CONTRAST SCENES BY AUTOMATING THE BIAS VALUE PARAMETER International Journal of Information Technology and Knowledge Management January-June 2012, Volume 5, No. 1, pp. 73-77 MODIFICATION OF ADAPTIVE LOGARITHMIC METHOD FOR DISPLAYING HIGH CONTRAST SCENES BY

More information

Images and Displays. Lecture Steve Marschner 1

Images and Displays. Lecture Steve Marschner 1 Images and Displays Lecture 2 2008 Steve Marschner 1 Introduction Computer graphics: The study of creating, manipulating, and using visual images in the computer. What is an image? A photographic print?

More information

High Dynamic Range Images Using Exposure Metering

High Dynamic Range Images Using Exposure Metering High Dynamic Range Images Using Exposure Metering 作 者 : 陳坤毅 指導教授 : 傅楸善 博士 Dynamic Range The dynamic range is a ratio between the maximum and minimum physical measures. Its definition depends on what the

More information

Dynamic Range. H. David Stein

Dynamic Range. H. David Stein Dynamic Range H. David Stein Dynamic Range What is dynamic range? What is low or limited dynamic range (LDR)? What is high dynamic range (HDR)? What s the difference? Since we normally work in LDR Why

More information

Contours, Saliency & Tone Mapping. Donald P. Greenberg Visual Imaging in the Electronic Age Lecture 21 November 3, 2016

Contours, Saliency & Tone Mapping. Donald P. Greenberg Visual Imaging in the Electronic Age Lecture 21 November 3, 2016 Contours, Saliency & Tone Mapping Donald P. Greenberg Visual Imaging in the Electronic Age Lecture 21 November 3, 2016 Foveal Resolution Resolution Limit for Reading at 18" The triangle subtended by a

More information

Improving digital images with the GNU Image Manipulation Program PHOTO FIX

Improving digital images with the GNU Image Manipulation Program PHOTO FIX Improving digital images with the GNU Image Manipulation Program PHOTO FIX is great for fixing digital images. We ll show you how to correct washed-out or underexposed images and white balance. BY GAURAV

More information

The Fundamental Problem

The Fundamental Problem The What, Why & How WHAT IS IT? Technique of blending multiple different exposures of the same scene to create a single image with a greater dynamic range than can be achieved with a single exposure. Can

More information

Understanding and Using Dynamic Range. Eagle River Camera Club October 2, 2014

Understanding and Using Dynamic Range. Eagle River Camera Club October 2, 2014 Understanding and Using Dynamic Range Eagle River Camera Club October 2, 2014 Dynamic Range Simplified Definition The number of exposure stops between the lightest usable white and the darkest useable

More information

Page 1 of 9. Blending Multiple Exposures The Manual Way to HDR (High Dynamic Range) TJ Avery 7-Feb-2008

Page 1 of 9. Blending Multiple Exposures The Manual Way to HDR (High Dynamic Range) TJ Avery 7-Feb-2008 Page 1 of 9 Blending Multiple Exposures The Manual Way to HDR (High Dynamic Range) TJ Avery 7-Feb-2008 The Problem Many natural landscape photographs will contain a range of light that exceeds what can

More information

Image acquisition. In both cases, the digital sensing element is one of the following: Line array Area array. Single sensor

Image acquisition. In both cases, the digital sensing element is one of the following: Line array Area array. Single sensor Image acquisition Digital images are acquired by direct digital acquisition (digital still/video cameras), or scanning material acquired as analog signals (slides, photographs, etc.). In both cases, the

More information

Images and Displays. CS4620 Lecture 15

Images and Displays. CS4620 Lecture 15 Images and Displays CS4620 Lecture 15 2014 Steve Marschner 1 What is an image? A photographic print A photographic negative? This projection screen Some numbers in RAM? 2014 Steve Marschner 2 An image

More information

Density vs. Contrast

Density vs. Contrast Density vs. Contrast In your negatives, density is controlled by the number of exposed crystals in your film which have been converted to hardened silver during processing. A dense negative (over exposed)

More information

HISTOGRAMS. These notes are a basic introduction to using histograms to guide image capture and image processing.

HISTOGRAMS. These notes are a basic introduction to using histograms to guide image capture and image processing. HISTOGRAMS Roy Killen, APSEM, EFIAP, GMPSA These notes are a basic introduction to using histograms to guide image capture and image processing. What are histograms? Histograms are graphs that show what

More information

Topaz Labs DeNoise 3 Review By Dennis Goulet. The Problem

Topaz Labs DeNoise 3 Review By Dennis Goulet. The Problem Topaz Labs DeNoise 3 Review By Dennis Goulet The Problem As grain was the nemesis of clean images in film photography, electronic noise in digitally captured images can be a problem in making photographs

More information

This histogram represents the +½ stop exposure from the bracket illustrated on the first page.

This histogram represents the +½ stop exposure from the bracket illustrated on the first page. Washtenaw Community College Digital M edia Arts Photo http://courses.wccnet.edu/~donw Don W erthm ann GM300BB 973-3586 donw@wccnet.edu Exposure Strategies for Digital Capture Regardless of the media choice

More information

Fixing the Gaussian Blur : the Bilateral Filter

Fixing the Gaussian Blur : the Bilateral Filter Fixing the Gaussian Blur : the Bilateral Filter Lecturer: Jianbing Shen Email : shenjianbing@bit.edu.cnedu Office room : 841 http://cs.bit.edu.cn/shenjianbing cn/shenjianbing Note: contents copied from

More information

Correcting Over-Exposure in Photographs

Correcting Over-Exposure in Photographs Correcting Over-Exposure in Photographs Dong Guo, Yuan Cheng, Shaojie Zhuo and Terence Sim School of Computing, National University of Singapore, 117417 {guodong,cyuan,zhuoshao,tsim}@comp.nus.edu.sg Abstract

More information

HDR images acquisition

HDR images acquisition HDR images acquisition dr. Francesco Banterle francesco.banterle@isti.cnr.it Current sensors No sensors available to consumer for capturing HDR content in a single shot Some native HDR sensors exist, HDRc

More information

Photomatix Light 1.0 User Manual

Photomatix Light 1.0 User Manual Photomatix Light 1.0 User Manual Table of Contents Introduction... iii Section 1: HDR...1 1.1 Taking Photos for HDR...2 1.1.1 Setting Up Your Camera...2 1.1.2 Taking the Photos...3 Section 2: Using Photomatix

More information

FOCUS, EXPOSURE (& METERING) BVCC May 2018

FOCUS, EXPOSURE (& METERING) BVCC May 2018 FOCUS, EXPOSURE (& METERING) BVCC May 2018 SUMMARY Metering in digital cameras. Metering modes. Exposure, quick recap. Exposure settings and modes. Focus system(s) and camera controls. Challenges & Experiments.

More information

COMPUTATIONAL PHOTOGRAPHY. Chapter 10

COMPUTATIONAL PHOTOGRAPHY. Chapter 10 1 COMPUTATIONAL PHOTOGRAPHY Chapter 10 Computa;onal photography Computa;onal photography: image analysis and processing algorithms are applied to one or more photographs to create images that go beyond

More information

Digital camera. Sensor. Memory card. Circuit board

Digital camera. Sensor. Memory card. Circuit board Digital camera Circuit board Memory card Sensor Detector element (pixel). Typical size: 2-5 m square Typical number: 5-20M Pixel = Photogate Photon + Thin film electrode (semi-transparent) Depletion volume

More information

Raymond Klass Photography Newsletter

Raymond Klass Photography Newsletter Raymond Klass Photography Newsletter The Next Step: Realistic HDR Techniques by Photographer Raymond Klass High Dynamic Range or HDR images, as they are often called, compensate for the limitations of

More information

A Saturation-based Image Fusion Method for Static Scenes

A Saturation-based Image Fusion Method for Static Scenes 2015 6th International Conference of Information and Communication Technology for Embedded Systems (IC-ICTES) A Saturation-based Image Fusion Method for Static Scenes Geley Peljor and Toshiaki Kondo Sirindhorn

More information

Digitizing Film Using the D850 and ES-2 Negative Digitizer

Digitizing Film Using the D850 and ES-2 Negative Digitizer JULY 23, 2018 INTERMEDIATE Digitizing Film Using the D850 and ES-2 Negative Digitizer The ES 2 can be used with both strip film and mounted slides. Digitizing film is the process of creating digital data

More information

The Blackbody s Black Body

The Blackbody s Black Body 1 The Blackbody s Black Body A Comparative Experiment Using Photographic Analysis In the last section we introduced the ideal blackbody: a hypothetical device from physics that absorbs all wavelengths

More information

the RAW FILE CONVERTER EX powered by SILKYPIX

the RAW FILE CONVERTER EX powered by SILKYPIX How to use the RAW FILE CONVERTER EX powered by SILKYPIX The X-Pro1 comes with RAW FILE CONVERTER EX powered by SILKYPIX software for processing RAW images. This software lets users make precise adjustments

More information

Digital Radiography using High Dynamic Range Technique

Digital Radiography using High Dynamic Range Technique Digital Radiography using High Dynamic Range Technique DAN CIURESCU 1, SORIN BARABAS 2, LIVIA SANGEORZAN 3, LIGIA NEICA 1 1 Department of Medicine, 2 Department of Materials Science, 3 Department of Computer

More information

How to capture the best HDR shots.

How to capture the best HDR shots. What is HDR? How to capture the best HDR shots. Processing HDR. Noise reduction. Conversion to monochrome. Enhancing room textures through local area sharpening. Standard shot What is HDR? HDR shot What

More information

Burst Photography! EE367/CS448I: Computational Imaging and Display! stanford.edu/class/ee367! Lecture 7! Gordon Wetzstein! Stanford University!

Burst Photography! EE367/CS448I: Computational Imaging and Display! stanford.edu/class/ee367! Lecture 7! Gordon Wetzstein! Stanford University! Burst Photography! EE367/CS448I: Computational Imaging and Display! stanford.edu/class/ee367! Lecture 7! Gordon Wetzstein! Stanford University! Motivation! wikipedia! exposure sequence! -4 stops! Motivation!

More information

Resolution, DPI NOTICE WE HAVE NOT YET EVEN DOUBLED LINEAR RESOLUTION, DESPITE ALMOST QUADRUPLING THE MEGAPIXELS. Don t get caught up with resolution

Resolution, DPI NOTICE WE HAVE NOT YET EVEN DOUBLED LINEAR RESOLUTION, DESPITE ALMOST QUADRUPLING THE MEGAPIXELS. Don t get caught up with resolution Printing Basics Printing Basics Resolution, DPI Don t get caught up with resolution 6 MP about 3,000 x 2,000 pixels 12 MP about 4,256 2,832 pixels 21 MP about 5,616 x 3,744 pixels NOTICE WE HAVE NOT YET

More information

Acquisition Basics. How can we measure material properties? Goal of this Section. Special Purpose Tools. General Purpose Tools

Acquisition Basics. How can we measure material properties? Goal of this Section. Special Purpose Tools. General Purpose Tools Course 10 Realistic Materials in Computer Graphics Acquisition Basics MPI Informatik (moving to the University of Washington Goal of this Section practical, hands-on description of acquisition basics general

More information

CSE 332/564: Visualization. Fundamentals of Color. Perception of Light Intensity. Computer Science Department Stony Brook University

CSE 332/564: Visualization. Fundamentals of Color. Perception of Light Intensity. Computer Science Department Stony Brook University Perception of Light Intensity CSE 332/564: Visualization Fundamentals of Color Klaus Mueller Computer Science Department Stony Brook University How Many Intensity Levels Do We Need? Dynamic Intensity Range

More information

Capturing Realistic HDR Images. Dave Curtin Nassau County Camera Club February 24 th, 2016

Capturing Realistic HDR Images. Dave Curtin Nassau County Camera Club February 24 th, 2016 Capturing Realistic HDR Images Dave Curtin Nassau County Camera Club February 24 th, 2016 Capturing Realistic HDR Images Topics: What is HDR? In Camera. Post-Processing. Sample Workflow. Q & A. Capturing

More information

Kent Messamore 3/6/2010

Kent Messamore 3/6/2010 Post Processing Kent Messamore 3/6/2010 What we will cover Post Processing Photoshop, Lightroom, Elements, and others JPEG or RAW Photoshop Elements Workflow Organization, Create, share Photoshop Elements

More information

DETERMINING LENS VIGNETTING WITH HDR TECHNIQUES

DETERMINING LENS VIGNETTING WITH HDR TECHNIQUES Национален Комитет по Осветление Bulgarian National Committee on Illumination XII National Conference on Lighting Light 2007 10 12 June 2007, Varna, Bulgaria DETERMINING LENS VIGNETTING WITH HDR TECHNIQUES

More information

Black and White (Monochrome) Photography

Black and White (Monochrome) Photography Black and White (Monochrome) Photography Andy Kirby 2018 Funded from the Scottish Hydro Gordonbush Community Fund The essence of a scene "It's up to you what you do with contrasts, light, shapes and lines

More information

Camera Image Processing Pipeline: Part II

Camera Image Processing Pipeline: Part II Lecture 13: Camera Image Processing Pipeline: Part II Visual Computing Systems Today Finish image processing pipeline Auto-focus / auto-exposure Camera processing elements Smart phone processing elements

More information

Images. CS 4620 Lecture Kavita Bala w/ prior instructor Steve Marschner. Cornell CS4620 Fall 2015 Lecture 38

Images. CS 4620 Lecture Kavita Bala w/ prior instructor Steve Marschner. Cornell CS4620 Fall 2015 Lecture 38 Images CS 4620 Lecture 38 w/ prior instructor Steve Marschner 1 Announcements A7 extended by 24 hours w/ prior instructor Steve Marschner 2 Color displays Operating principle: humans are trichromatic match

More information

HIGH DYNAMIC RANGE IMAGING Nancy Clements Beasley, March 22, 2011

HIGH DYNAMIC RANGE IMAGING Nancy Clements Beasley, March 22, 2011 HIGH DYNAMIC RANGE IMAGING Nancy Clements Beasley, March 22, 2011 First - What Is Dynamic Range? Dynamic range is essentially about Luminance the range of brightness levels in a scene o From the darkest

More information

CSC320H: Intro to Visual Computing. Course WWW (course information sheet available there):

CSC320H: Intro to Visual Computing. Course WWW (course information sheet available there): CSC320H: Intro to Visual Computing Instructor: Fernando Flores-Mangas Office: PT265C Email: mangas320@cs.toronto.edu Office Hours: W 11-noon or by appt. Course WWW (course information sheet available there):

More information

High Dynamic Range (HDR) Photography in Photoshop CS2

High Dynamic Range (HDR) Photography in Photoshop CS2 Page 1 of 7 High dynamic range (HDR) images enable photographers to record a greater range of tonal detail than a given camera could capture in a single photo. This opens up a whole new set of lighting

More information

The Dynamic Range Problem. High Dynamic Range (HDR) Multiple Exposure Photography. Multiple Exposure Photography. Dr. Yossi Rubner.

The Dynamic Range Problem. High Dynamic Range (HDR) Multiple Exposure Photography. Multiple Exposure Photography. Dr. Yossi Rubner. The Dynamic Range Problem High Dynamic Range (HDR) starlight Domain of Human Vision: from ~10-6 to ~10 +8 cd/m moonlight office light daylight flashbulb 10-6 10-1 10 100 10 +4 10 +8 Dr. Yossi Rubner yossi@rubner.co.il

More information

Camera Image Processing Pipeline: Part II

Camera Image Processing Pipeline: Part II Lecture 14: Camera Image Processing Pipeline: Part II Visual Computing Systems Today Finish image processing pipeline Auto-focus / auto-exposure Camera processing elements Smart phone processing elements

More information

Automatic Selection of Brackets for HDR Image Creation

Automatic Selection of Brackets for HDR Image Creation Automatic Selection of Brackets for HDR Image Creation Michel VIDAL-NAQUET, Wei MING Abstract High Dynamic Range imaging (HDR) is now readily available on mobile devices such as smart phones and compact

More information

LANDSCAPE PHOTOGRAPHY TECHNIQUES, COMPOSITION, AND PROCESSING

LANDSCAPE PHOTOGRAPHY TECHNIQUES, COMPOSITION, AND PROCESSING LANDSCAPE PHOTOGRAPHY TECHNIQUES, COMPOSITION, AND PROCESSING Tom Price LANDSCAPE PHOTOGRAPHY TIPS AND TRICKS Wide angle lens desirable 16-18 mm good focal length for APC-C sensor Telephoto also produce

More information

TIPA Camera Test. How we test a camera for TIPA

TIPA Camera Test. How we test a camera for TIPA TIPA Camera Test How we test a camera for TIPA Image Engineering GmbH & Co. KG. Augustinusstraße 9d. 50226 Frechen. Germany T +49 2234 995595 0. F +49 2234 995595 10. www.image-engineering.de CONTENT Table

More information

USE OF HISTOGRAM EQUALIZATION IN IMAGE PROCESSING FOR IMAGE ENHANCEMENT

USE OF HISTOGRAM EQUALIZATION IN IMAGE PROCESSING FOR IMAGE ENHANCEMENT USE OF HISTOGRAM EQUALIZATION IN IMAGE PROCESSING FOR IMAGE ENHANCEMENT Sapana S. Bagade M.E,Computer Engineering, Sipna s C.O.E.T,Amravati, Amravati,India sapana.bagade@gmail.com Vijaya K. Shandilya Assistant

More information

photokaboom Learn Photography Home About Privacy, Etc. Ask Jim SarasotaPhotoLessons.com Menus Black-and-white Digital Photography

photokaboom Learn Photography Home About Privacy, Etc. Ask Jim SarasotaPhotoLessons.com Menus Black-and-white Digital Photography 1 of 12 3/28/2019, 5:53 PM photokaboom Learn Photography Home About Privacy, Etc. Ask Jim SarasotaPhotoLessons.com Menus 1 - Why Black-and-white? 2 - Is Color Present in a BW Photograph? 3 - Camera Set

More information

Hello, welcome to the video lecture series on Digital Image Processing.

Hello, welcome to the video lecture series on Digital Image Processing. Digital Image Processing. Professor P. K. Biswas. Department of Electronics and Electrical Communication Engineering. Indian Institute of Technology, Kharagpur. Lecture-33. Contrast Stretching Operation.

More information

A Short History of Using Cameras for Weld Monitoring

A Short History of Using Cameras for Weld Monitoring A Short History of Using Cameras for Weld Monitoring 2 Background Ever since the development of automated welding, operators have needed to be able to monitor the process to ensure that all parameters

More information

High dynamic range imaging

High dynamic range imaging High dynamic range imaging Digital Visual Effects, Spring 2007 Yung-Yu Chuang 2007/3/6 with slides by Fedro Durand, Brian Curless, Steve Seitz and Alexei Efros Announcements Assignment #1 announced on

More information

Image Enhancement in the Spatial Domain (Part 1)

Image Enhancement in the Spatial Domain (Part 1) Image Enhancement in the Spatial Domain (Part 1) Lecturer: Dr. Hossam Hassan Email : hossameldin.hassan@eng.asu.edu.eg Computers and Systems Engineering Principle Objective of Enhancement Process an image

More information

CS 89.15/189.5, Fall 2015 ASPECTS OF DIGITAL PHOTOGRAPHY COMPUTATIONAL. Image Processing Basics. Wojciech Jarosz

CS 89.15/189.5, Fall 2015 ASPECTS OF DIGITAL PHOTOGRAPHY COMPUTATIONAL. Image Processing Basics. Wojciech Jarosz CS 89.15/189.5, Fall 2015 COMPUTATIONAL ASPECTS OF DIGITAL PHOTOGRAPHY Image Processing Basics Wojciech Jarosz wojciech.k.jarosz@dartmouth.edu Domain, range Domain vs. range 2D plane: domain of images

More information

Resolution test with line patterns

Resolution test with line patterns Resolution test with line patterns OBJECT IMAGE 1 line pair Resolution limit is usually given in line pairs per mm in sensor plane. Visual evaluation usually. Test of optics alone Magnifying glass Test

More information

CS534 Introduction to Computer Vision. Linear Filters. Ahmed Elgammal Dept. of Computer Science Rutgers University

CS534 Introduction to Computer Vision. Linear Filters. Ahmed Elgammal Dept. of Computer Science Rutgers University CS534 Introduction to Computer Vision Linear Filters Ahmed Elgammal Dept. of Computer Science Rutgers University Outlines What are Filters Linear Filters Convolution operation Properties of Linear Filters

More information

Goal of this Section. Capturing Reflectance From Theory to Practice. Acquisition Basics. How can we measure material properties? Special Purpose Tools

Goal of this Section. Capturing Reflectance From Theory to Practice. Acquisition Basics. How can we measure material properties? Special Purpose Tools Capturing Reflectance From Theory to Practice Acquisition Basics GRIS, TU Darmstadt (formerly University of Washington, Seattle Goal of this Section practical, hands-on description of acquisition basics

More information

A Real Time Algorithm for Exposure Fusion of Digital Images

A Real Time Algorithm for Exposure Fusion of Digital Images A Real Time Algorithm for Exposure Fusion of Digital Images Tomislav Kartalov #1, Aleksandar Petrov *2, Zoran Ivanovski #3, Ljupcho Panovski #4 # Faculty of Electrical Engineering Skopje, Karpoš II bb,

More information

Aperture. The lens opening that allows more, or less light onto the sensor formed by a diaphragm inside the actual lens.

Aperture. The lens opening that allows more, or less light onto the sensor formed by a diaphragm inside the actual lens. PHOTOGRAPHY TERMS: AE - Auto Exposure. When the camera is set to this mode, it will automatically set all the required modes for the light conditions. I.e. Shutter speed, aperture and white balance. The

More information

HDR imaging Automatic Exposure Time Estimation A novel approach

HDR imaging Automatic Exposure Time Estimation A novel approach HDR imaging Automatic Exposure Time Estimation A novel approach Miguel A. MARTÍNEZ,1 Eva M. VALERO,1 Javier HERNÁNDEZ-ANDRÉS,1 Javier ROMERO,1 1 Color Imaging Laboratory, University of Granada, Spain.

More information

VU Rendering SS Unit 8: Tone Reproduction

VU Rendering SS Unit 8: Tone Reproduction VU Rendering SS 2012 Unit 8: Tone Reproduction Overview 1. The Problem Image Synthesis Pipeline Different Image Types Human visual system Tone mapping Chromatic Adaptation 2. Tone Reproduction Linear methods

More information

Image Processing. 2. Point Processes. Computer Engineering, Sejong University Dongil Han. Spatial domain processing

Image Processing. 2. Point Processes. Computer Engineering, Sejong University Dongil Han. Spatial domain processing Image Processing 2. Point Processes Computer Engineering, Sejong University Dongil Han Spatial domain processing g(x,y) = T[f(x,y)] f(x,y) : input image g(x,y) : processed image T[.] : operator on f, defined

More information

It should also be noted that with modern cameras users can choose for either

It should also be noted that with modern cameras users can choose for either White paper about color correction More drama Many application fields like digital printing industry or the human medicine require a natural display of colors. To illustrate the importance of color fidelity,

More information

Understanding Histograms

Understanding Histograms Information copied from Understanding Histograms http://www.luminous-landscape.com/tutorials/understanding-series/understanding-histograms.shtml Possibly the most useful tool available in digital photography

More information

CS6670: Computer Vision

CS6670: Computer Vision CS6670: Computer Vision Noah Snavely Lecture 22: Computational photography photomatix.com Announcements Final project midterm reports due on Tuesday to CMS by 11:59pm BRDF s can be incredibly complicated

More information

White paper. Wide dynamic range. WDR solutions for forensic value. October 2017

White paper. Wide dynamic range. WDR solutions for forensic value. October 2017 White paper Wide dynamic range WDR solutions for forensic value October 2017 Table of contents 1. Summary 4 2. Introduction 5 3. Wide dynamic range scenes 5 4. Physical limitations of a camera s dynamic

More information

Histograms and Tone Curves

Histograms and Tone Curves Histograms and Tone Curves We present an overview to explain Digital photography essentials behind Histograms, Tone Curves, and a powerful new slider feature called the TAT tool (Targeted Assessment Tool)

More information

Select your Image in Bridge. Make sure you are opening the RAW version of your image file!

Select your Image in Bridge. Make sure you are opening the RAW version of your image file! CO 3403: Photographic Communication Steps for Non-Destructive Image Adjustments in Photoshop Use the application Bridge to preview your images and open your files with Camera Raw Review the information

More information

Topic 1 - A Closer Look At Exposure Shutter Speeds

Topic 1 - A Closer Look At Exposure Shutter Speeds Getting more from your Camera Topic 1 - A Closer Look At Exposure Shutter Speeds Learning Outcomes In this lesson, we will look at exposure in more detail: ISO, Shutter speed and aperture. We will be reviewing

More information

Landscape Photography

Landscape Photography Landscape Photography Francis J Pullen Photography 2015 Landscape photography requires a considered approach, and like fine wine or food, should not be rushed. You may even want scout out the desired location

More information

A Beginner s Guide To Exposure

A Beginner s Guide To Exposure A Beginner s Guide To Exposure What is exposure? A Beginner s Guide to Exposure What is exposure? According to Wikipedia: In photography, exposure is the amount of light per unit area (the image plane

More information

High dynamic range imaging

High dynamic range imaging Announcements High dynamic range imaging Digital Visual Effects, Spring 27 Yung-Yu Chuang 27/3/6 Assignment # announced on 3/7 (due on 3/27 noon) TA/signup sheet/gil/tone mapping Considered easy; it is

More information

Bristol Photographic Society Introduction to Digital Imaging

Bristol Photographic Society Introduction to Digital Imaging Bristol Photographic Society Introduction to Digital Imaging Part 16 HDR an Introduction HDR stands for High Dynamic Range and is a method for capturing a scene that has a light range (light to dark) that

More information

Low Dynamic Range Solutions to the High Dynamic Range Imaging Problem

Low Dynamic Range Solutions to the High Dynamic Range Imaging Problem Low Dynamic Range Solutions to the High Dynamic Range Imaging Problem Submitted in partial fulfillment of the requirements of the degree of Doctor of Philosophy by Shanmuganathan Raman (Roll No. 06407008)

More information

An Introduction to. Photographic Exposure: Aperture, ISO and Shutter Speed

An Introduction to. Photographic Exposure: Aperture, ISO and Shutter Speed An Introduction to Photographic Exposure: Aperture, ISO and Shutter Speed EXPOSURE Exposure relates to light and how it enters and interacts with the camera. Too much light Too little light EXPOSURE The

More information

HDR is a process for increasing the range of tonal values beyond what a single frame (either film or digital) can produce.

HDR is a process for increasing the range of tonal values beyond what a single frame (either film or digital) can produce. HDR HDR is a process for increasing the range of tonal values beyond what a single frame (either film or digital) can produce. It can be used to create more realistic views, or wild extravagant ones What

More information

High Dynamic Range Imaging

High Dynamic Range Imaging High Dynamic Range Imaging IMAGE BASED RENDERING, PART 1 Mihai Aldén mihal915@student.liu.se Fredrik Salomonsson fresa516@student.liu.se Tuesday 7th September, 2010 Abstract This report describes the implementation

More information

CHAPTER 7 - HISTOGRAMS

CHAPTER 7 - HISTOGRAMS CHAPTER 7 - HISTOGRAMS In the field, the histogram is the single most important tool you use to evaluate image exposure. With the histogram, you can be certain that your image has no important areas that

More information

Continuous Flash. October 1, Technical Report MSR-TR Microsoft Research Microsoft Corporation One Microsoft Way Redmond, WA 98052

Continuous Flash. October 1, Technical Report MSR-TR Microsoft Research Microsoft Corporation One Microsoft Way Redmond, WA 98052 Continuous Flash Hugues Hoppe Kentaro Toyama October 1, 2003 Technical Report MSR-TR-2003-63 Microsoft Research Microsoft Corporation One Microsoft Way Redmond, WA 98052 Page 1 of 7 Abstract To take a

More information

Luminosity Masks Program Notes Gateway Camera Club January 2017

Luminosity Masks Program Notes Gateway Camera Club January 2017 Luminosity Masks Program Notes Gateway Camera Club January 2017 What are Luminosity Masks : Luminosity Masks are a way of making advanced selections in Photoshop Selections are based on Luminosity - how

More information