Size: px
Start display at page:

Download ""

Transcription

1 Glare reduction for Sky imaging cameras using tone mapping of simultaneous images Jose I. Zapata 1, Geoff Barton 1, Yuxin Liu 1 1 Research School of Engineering, The Australian National University jose.zapata@anu.edu.au Abstract Short-term cloud forecast systems detect clouds and track their movement by acquiring and processing digital colour images of the sky. The high intensity of solar irradiance can induce glare in images containing the solar disk. This paper proposes an approach using two inexpensive surveillance IP cameras fitted with neutral density filters to reduce solar glare. The cameras operate concurrently and capture 1600x1200 pixel images synchronously at 5 second intervals. Camera images are combined with a tone mapping algorithm into an image that exhibits a 40% reduction of the glare radius in the vicinity of the solar disk, and preserves the contrast of cloud and clear sky in the image. All image processing steps are implemented on a desktop computer with OpenCV 3.0, a comprehensive open source C++/Python image processing suite. This paper provides the design and implementation details of the sky imager system and the proposed glare reduction technique. 1. Introduction Short-term cloud forecasting has the potential to improve the operation of a concentrating solar thermal power (CSP) plant by estimating cloud cover over a concentrator field (Law et al. 2014, López-Martínez et al. 2002). Intermittent cloud cover drastically reduces the intensity of direct normal irradiance (DNI) intercepted at the receiver of a CSP plant. Intermittent DNI induces transients at the receiver that can lead to thermal stress and suboptimal plant performance (Camacho et al. 2012, Zapata 2015). Plant operation strategies can incorporate DNI forecasts to pre-empt and counteract receiver transients or to safely steer the system to stand-by mode and wait for cloud cover to dissipate. Short-term cloud forecasting systems employ a digital camera to acquire digital of the sky in the vicinity of the plant under consideration and aim to forecast cloud passage in timeframes between 1 and 60 min (Urquhart et al. 2015). Clouds in digital images are detected using image processing and machine learning algorithms that distinguish between blue (sky) and white (cloud) pixels, and track their movement across several frames. However, the high intensity of solar radiation can saturate camera sensors and create glare in lenses, producing a whiteout section around the solar disk in digital images. Approaches to deal with glare include shadow bands (Chow et al. 2011) and sequential photographs at different exposures (Cazorla et al. 2015). Shadow band approaches require moving parts and sequential exposure techniques require acquiring multiple images whilst varying the exposure in the camera. The approach presented in this study combines two low budget cameras filtered with neutral density filters at two different exposures to obtain low glare images of the sky simultaneously and without moving parts. Subsequently images are combined with image processing, giving high cloud/sky contrast for a low cost, no moving parts and a faster scan rate. Images are then combined using image processing algorithms implemented in open source software, with the aim to produce a low-cost, real time processing system. The rest of this paper describes the camera system hardware and image processing steps to combine images.

2 2. Hardware setup The sky imaging system consists of two fish eye surveillance cameras, a mounting frame, a network router and a desktop computer. The cameras are DLINK DCS-6010 surveillance cameras with a 180 fish eye lens, a maximum resolution of 1600x1200 pixels, a colour resolution of 24-bits, IP connectivity (e.g. UDP and TCP/IP protocols), and are powered with a 240VAC/5VDC power supply. Figure 1 (a) Camera system and alginment frame mounted on location at the ANU Solar Thermal Facilities. (b) Detail of leveling screws The mounting frame consists of a MDF platform where both cameras are mounted adjacent to one another, a swivelling base and levelling screws to ensure a consistent mounting. The network router creates a local area network that connects both cameras and the desktop computer using Ethernet cables. The desktop computer runs Ubuntu and VLC media player to retrieve high resolution images from both cameras at 5 second intervals. Images are stored in the computer hard drive for further processing. During operation, the sky imaging system is mounted in the rooftop test area of the Solar Thermal Facilities at the Australian National University, Canberra (see Figure 1). Figure 2 Internal and external neutral density filters for each camera Figure 3(a) and Figure 3(b) show the resulting images obtained from each camera after the applying the ND filter films. Figure 3(a) provides an image with high contras between clear sky and cloud, but exhibits substantial glare around the solar disk, whereas Figure 3(b) results in low glare but also low contrast. In addition, camera images differ slightly due to a difference between how each sensor is aligned in the camera mounting, and due to being

3 adjacent from one another. The next section details the steps to merge these images, to obtain the image resulting in Figure 3(c). Figure 3 (a) Sky image with 6-fstop reductions (-1.8EV) NDF (b) Sky image with 8 f-stop reductions (-2.4EV) NDF (c) Tone-map fused image displaying cloud details and reduced glare 3. Processing images to form a tone-map fused image Images acquired with the camera system are processed in order to produce a single image with reduced solar glare and high contrast between cloud and sky. The image processing software has been developed in C++ using OpenCV 3.0, a high performance open source library featuring a complete set of image processing and computer vision algorithms. Images captured by one camera are aligned to the simultaneous capture from the second camera so that the sky and surrounding landmarks (i.e. trees, buildings, etc.) overlap when superimposing the images. The process that rotates, translates and stretches an image for the alignment required for the camera is termed an affine transformation. The camera system employs an iterative image alignment algorithm that compares the intensity profiles in both images to calculate the amount of transformation required to align them (Evangelidis & Psarakis 2008). As the alignment between cameras does not change, the amount of transformation (termed the transformation matrix) is calculated a priori and only the affine transform is only applied during operation, to save computation time. Aligned images are subsequently combined using an exposure based tone-mapping algorithm (Mertens et al. 2007). The algorithm blends photographs with different exposures, based on selected portions of each image that satisfy an adjustable criteria for saturation and contrast. In the case of the camera system, the parameters are tuned to reduce glare and increase

4 contrast between contrast and clear sky. A sample tone-map fused image is shown in Figure 3(c). The glare around the solar disk covers approximately 40% less pixels in the tone-map fused image than in Figure 3(a), and exhibits better cloud sky contrast than Figure 3(b). 4. Cloud detection results on tone-map fused images The tone-map fused images produced by the camera system are processed further, so that pixels corresponding to cloud cover can be identified. This is done by first ruling out pixels that are neither cloud nor sky, and then classifying the remaining pixels based on colour differences. The fish eye lenses in the camera system project a circular image onto the square sensor, leaving the outside portion of the image unused. In addition, landmarks surrounding the camera system such as buildings and trees appear at the edge of the fish eye image. All these pixels are ignored by maintaining a mask, a matrix with the same number of elements as pixels in the image, and in each element containing a value of zero to ignore the corresponding pixel in the image or value of one otherwise. The remaining pixels are processed with a thresholding algorithm to differentiate cloud from sky. A thresholding algorithm evaluates the red, green and blue (RGB) information contained in each pixel with a predetermined rule, and determines if a pixel is above or below the threshold set by the rule. For cloud detection, thresholding methods evaluate the colour difference between white/grey clouds and predominantly blue skies. Thresholding rules for cloud detection include the difference between the red and blue channels (RBD), the ratio between red and blue channels (RBR) and colour saturation (Chauvin et al. 2015, West et al. 2014). Figure 4 (a) Tone-mapped image of sky with occluded solar disk (b) Cloud detection algorithm with a saturation level of 0.7, and highlighted area where glare still affects cloud detection Initial trials consisted of evaluating tone-map fused images obtained by the camera system using RBR, RBD, normalised RBD, saturation and Euclidian Geometric Distance thresholding rules; and manually varying the threshold values for each rule. These trials showed that the best performing algorithm is a saturation based rule (Souza-Echer et al. 2006), which calculates the saturation of a pixel in the range [0, 1]. A threshold value of 0.7 produces a satisfactory cloud outline across an entire image.

5 Figure 4 shows a tone-map fused image with only a sliver of the solar disk behind clouds, alongside the resulting map of detected clouds. It can be seen that cloud is correctly identified throughout the image, even when the shades of cloud range between bright white and dark grey. Similarly, clear sky portions have been identified for different shades of blue, and even in small portions surrounded by cloud. In Figure 4(b), a region around the solar disk has been manually shaded in light blue to highlight an area of the image identified as cloud, but can be seen to correspond to clear sky in Figure 4(a). This is a result of the selected thresolding value that is sensitive around the occluded solar disk. It is possible to correctly identify this portion of the image as clear sky using a threshold of 0.6, but this yields poor cloud detection elsewhere in the image. Figure 5 (a) Tone-map fused image of sky with visible solar disk (b) Cloud detection on tone-map fused image with a saturation level of 0.5 (c) Single camera image of sky with visible solar disk and glare (d) Cloud detection on single camera image with a saturation threshold of 0.5 Figure 5 shows another cloud detection result of a tone-map fused image compared against the cloud detection of single camera shot. Figure 5 shows that at a reduced threshold value of 0.5, the tone-map fused image produces a smaller cloud than the single shot image with glare, demonstrating the potential of the glare reducing technique proposed in this study. This result also shows how reducing the saturation value may improve the distinction of cloud, clear sky around the solar disk but it is detrimental elsewhere in the image.

6 5. Summary and future work The present work has shown the design and construction of a low cost camera system intended to track the passage of clouds over a concentrating solar thermal system to forecast changes in direct normal irradiance. The camera system consists of two cameras with different neutral density filters, in order to capture a simultaneous double exposure image of the sky. The low exposure image provides reduced glare around the solar disk whereas the higher exposure contributes better contrast between clouds and sky. Images are successfully combined with an exposure tone-map fusion algorithm, and processed with a saturation based threshold algorithm to identify and classify pixels in the image that are cloud, clear sky or surrounding landmarks. Future work in this project will focus on refining the classification of clouds and clear sky around the solar disk. The work includes tracking the position of the solar disk in the images using solar position algorithms, and processing different regions of the image with different threshold values (i.e. adaptive thresholding). References Camacho, E., Berenguel, M., Rubio, F. & Martinez, D. (2012), Control of Solar Energy Systems, 1st edn, Springer-Verlag London Limited. Cazorla, A., Husillos, C., Antón, M. & Alados-Arboledas, L. (2015), Multi-exposure adaptive threshold technique for cloud detection with sky imagers, Solar Energy 114, Chauvin, R., Nou, J., Thil, S., Traoré, A. & Grieu, S. (2015), Cloud detection methodology based on a sky-imaging system, Energy Procedia 69, International Conference on Concentrating Solar Power and Chemical Energy Systems, SolarPACES Chow, C. W., Urquhart, B., Lave, M., Dominguez, A., Kleissl, J., Shields, J. & Washom, B. (2011), Intra-hour forecasting with a total sky imager at the uc san diego solar energy testbed, Solar Energy 85(11), Evangelidis, G. & Psarakis, E. (2008), Parametric image alignment using enhanced correlation coefficient maximization, IEEE Transactions on Pattern Analysis and Machine Intelligence 30(10), Law, E. W., Prasad, A. A., Kay, M. & Taylor, R. A. (2014), Direct normal irradiance forecasting and its application to concentrated solar thermal output forecasting - a review, Solar Energy 108(0), López-Martínez, M., Vargas, M. & Rubio, F. R. (2002), Vision-based system for the safe operation of a solar power tower plant, in IBERAMIA 2002: Proceedings of the 8th Ibero- American Conference on AI, Springer-Verlag, London, UK, pp Mertens, T., Kautz, J. & Van Reeth, F. (2007), Exposure fusion, in Computer Graphics and Applications, PG th Pacific Conference on, IEEE, pp Souza-Echer, M. P., Pereira, E. B., Bins, L. S. & Andrade, M. A. R. (2006), A simple method for the assessment of the cloud cover state in high-latitude regions by a ground-based digital camera, Journal of Atmospheric and Oceanic Technology 23,

7 Urquhart, B., Kurtz, B., Dahlin, E., Ghonima, M., Shields, J. E. & Kleissl, J. (2015), Development of a sky imaging system for short-term solar power forecasting, Atmospheric Measurement Techniques 8(2), West, S. R., Rowe, D., Sayeef, S. & Berry, A. (2014), Short-term irradiance forecasting using skycams: Motivation and development, Solar Energy 110(0), Zapata, J. (2015), Full state feedback control of steam temperature in a once-thorough direct steam generation receiver powered by a paraboloidal dish, Journal of Solar Energy Engineering 137(2), Acknowledgements The authors wish to acknowledge the Australian Renewable Energy Agency (ARENA) and the ANU Research School of Engineering for their financial support to conduct this study.

Colour correction for panoramic imaging

Colour correction for panoramic imaging Colour correction for panoramic imaging Gui Yun Tian Duke Gledhill Dave Taylor The University of Huddersfield David Clarke Rotography Ltd Abstract: This paper reports the problem of colour distortion in

More information

Figure 1. Mr Bean cartoon

Figure 1. Mr Bean cartoon Dan Diggins MSc Computer Animation 2005 Major Animation Assignment Live Footage Tooning using FilterMan 1 Introduction This report discusses the processes and techniques used to convert live action footage

More information

Preparing Remote Sensing Data for Natural Resources Mapping (image enhancement, rectifications )

Preparing Remote Sensing Data for Natural Resources Mapping (image enhancement, rectifications ) Preparing Remote Sensing Data for Natural Resources Mapping (image enhancement, rectifications ) Why is this important What are the major approaches Examples of digital image enhancement Follow up exercises

More information

Filters for the digital age

Filters for the digital age Chapter 9-Filters Filters for the digital age What is a filter? Filters are simple lens attachments that screw into or fit over the front of a lens to alter the light coming through the lens. Filters

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

Filters for the digital age

Filters for the digital age Chapter 9-Filters Filters for the digital age What is a filter? Filters are simple lens attachments that screw into or fit over the front of a lens to alter the light coming through the lens. Filters

More information

The new technology enables 8K high resolution and high picture quality imaging without motion distortion, even in extremely bright scenes.

The new technology enables 8K high resolution and high picture quality imaging without motion distortion, even in extremely bright scenes. Feb 14, 2018 Panasonic Develops Industry's-First*1 8K High-Resolution, High-Performance Global Shutter Technology using Organic-Photoconductive-Film CMOS Image Sensor The new technology enables 8K high

More information

Maine Day in May. 54 Chapter 2: Painterly Techniques for Non-Painters

Maine Day in May. 54 Chapter 2: Painterly Techniques for Non-Painters Maine Day in May 54 Chapter 2: Painterly Techniques for Non-Painters Simplifying a Photograph to Achieve a Hand-Rendered Result Excerpted from Beyond Digital Photography: Transforming Photos into Fine

More information

Photo Editing Workflow

Photo Editing Workflow Photo Editing Workflow WHY EDITING Modern digital photography is a complex process, which starts with the Photographer s Eye, that is, their observational ability, it continues with photo session preparations,

More information

Advanced Diploma in. Photoshop. Summary Notes

Advanced Diploma in. Photoshop. Summary Notes Advanced Diploma in Photoshop Summary Notes Suggested Set Up Workspace: Essentials or Custom Recommended: Ctrl Shift U Ctrl + T Menu Ctrl + I Ctrl + J Desaturate Free Transform Filter options Invert Duplicate

More information

PROFILE BASED SUB-PIXEL-CLASSIFICATION OF HEMISPHERICAL IMAGES FOR SOLAR RADIATION ANALYSIS IN FOREST ECOSYSTEMS

PROFILE BASED SUB-PIXEL-CLASSIFICATION OF HEMISPHERICAL IMAGES FOR SOLAR RADIATION ANALYSIS IN FOREST ECOSYSTEMS PROFILE BASED SUB-PIXEL-CLASSIFICATION OF HEMISPHERICAL IMAGES FOR SOLAR RADIATION ANALYSIS IN FOREST ECOSYSTEMS Ellen Schwalbe a, Hans-Gerd Maas a, Manuela Kenter b, Sven Wagner b a Institute of Photogrammetry

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

FOG REMOVAL ALGORITHM USING ANISOTROPIC DIFFUSION AND HISTOGRAM STRETCHING

FOG REMOVAL ALGORITHM USING ANISOTROPIC DIFFUSION AND HISTOGRAM STRETCHING FOG REMOVAL ALGORITHM USING DIFFUSION AND HISTOGRAM STRETCHING 1 G SAILAJA, 2 M SREEDHAR 1 PG STUDENT, 2 LECTURER 1 DEPARTMENT OF ECE 1 JNTU COLLEGE OF ENGINEERING (Autonomous), ANANTHAPURAMU-5152, ANDRAPRADESH,

More information

Image Processing by Bilateral Filtering Method

Image Processing by Bilateral Filtering Method ABHIYANTRIKI An International Journal of Engineering & Technology (A Peer Reviewed & Indexed Journal) Vol. 3, No. 4 (April, 2016) http://www.aijet.in/ eissn: 2394-627X Image Processing by Bilateral Image

More information

An Autonomous Vehicle Navigation System using Panoramic Machine Vision Techniques

An Autonomous Vehicle Navigation System using Panoramic Machine Vision Techniques An Autonomous Vehicle Navigation System using Panoramic Machine Vision Techniques Kevin Rushant, Department of Computer Science, University of Sheffield, GB. email: krusha@dcs.shef.ac.uk Libor Spacek,

More information

HDR videos acquisition

HDR videos acquisition HDR videos acquisition dr. Francesco Banterle francesco.banterle@isti.cnr.it How to capture? Videos are challenging: We need to capture multiple frames at different exposure times and everything moves

More information

Real-Time Face Detection and Tracking for High Resolution Smart Camera System

Real-Time Face Detection and Tracking for High Resolution Smart Camera System Digital Image Computing Techniques and Applications Real-Time Face Detection and Tracking for High Resolution Smart Camera System Y. M. Mustafah a,b, T. Shan a, A. W. Azman a,b, A. Bigdeli a, B. C. Lovell

More information

Dual-fisheye Lens Stitching for 360-degree Imaging & Video. Tuan Ho, PhD. Student Electrical Engineering Dept., UT Arlington

Dual-fisheye Lens Stitching for 360-degree Imaging & Video. Tuan Ho, PhD. Student Electrical Engineering Dept., UT Arlington Dual-fisheye Lens Stitching for 360-degree Imaging & Video Tuan Ho, PhD. Student Electrical Engineering Dept., UT Arlington Introduction 360-degree imaging: the process of taking multiple photographs and

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

Extending the Dynamic Range of Film

Extending the Dynamic Range of Film Written by Jonathan Sachs Copyright 1999-2003 Digital Light & Color Introduction Limited dynamic range is a common problem, especially with today s fine-grained slide films. When photographing contrasty

More information

How I did it by Chris Axe. Special thanks to Kim Walker

How I did it by Chris Axe. Special thanks to Kim Walker How I did it by Chris Axe Special thanks to Kim Walker Story of this image This photo was taken in Garrapata State Park at the very first gate as you head south. It took about 15 minutes to figure out

More information

A multi-dimensional criteria algorithm for cloud detection in the circumsolar area

A multi-dimensional criteria algorithm for cloud detection in the circumsolar area CYPRUS UNIVERSITY OF TECHNOLOGY Sustainable Energy Laboratory TRANSILVANIA UNIVERSITY OF BRASOV Renewable Energy Systems and Recycling Centre A multi-dimensional criteria algorithm for cloud detection

More information

MODULE 4 LECTURE NOTES 4 DENSITY SLICING, THRESHOLDING, IHS, TIME COMPOSITE AND SYNERGIC IMAGES

MODULE 4 LECTURE NOTES 4 DENSITY SLICING, THRESHOLDING, IHS, TIME COMPOSITE AND SYNERGIC IMAGES MODULE 4 LECTURE NOTES 4 DENSITY SLICING, THRESHOLDING, IHS, TIME COMPOSITE AND SYNERGIC IMAGES 1. Introduction Digital image processing involves manipulation and interpretation of the digital images so

More information

On spatial resolution

On spatial resolution On spatial resolution Introduction How is spatial resolution defined? There are two main approaches in defining local spatial resolution. One method follows distinction criteria of pointlike objects (i.e.

More information

The Denali-MC HDR ISP Backgrounder

The Denali-MC HDR ISP Backgrounder The Denali-MC HDR ISP Backgrounder 2-4 brackets up to 8 EV frame offset Up to 16 EV stops for output HDR LATM (tone map) up to 24 EV Noise reduction due to merging of 10 EV LDR to a single 16 EV HDR up

More information

STEM Spectrum Imaging Tutorial

STEM Spectrum Imaging Tutorial STEM Spectrum Imaging Tutorial Gatan, Inc. 5933 Coronado Lane, Pleasanton, CA 94588 Tel: (925) 463-0200 Fax: (925) 463-0204 April 2001 Contents 1 Introduction 1.1 What is Spectrum Imaging? 2 Hardware 3

More information

White Paper High Dynamic Range Imaging

White Paper High Dynamic Range Imaging WPE-2015XI30-00 for Machine Vision What is Dynamic Range? Dynamic Range is the term used to describe the difference between the brightest part of a scene and the darkest part of a scene at a given moment

More information

Using the Advanced Sharpen Transformation

Using the Advanced Sharpen Transformation Using the Advanced Sharpen Transformation Written by Jonathan Sachs Revised 10 Aug 2014 Copyright 2002-2014 Digital Light & Color Introduction Picture Window Pro s Advanced Sharpen transformation is a

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

DYNAMIC SIMULATION OF MONO-TUBE CAVITY RECEIVERS FOR DIRECT STEAM GENERATION

DYNAMIC SIMULATION OF MONO-TUBE CAVITY RECEIVERS FOR DIRECT STEAM GENERATION DYNAMIC SIMULATION OF MONO-TUBE CAVITY RECEIVERS FOR DIRECT STEAM GENERATION José Zapata 1, John Pye 2, Keith Lovegrove 3 1 BEng(hons), PhD student, Research School of Engineering (RSE), Australian National

More information

A Modified Extended Kalman Filter to Estimate the State of the SG4 Receiver at the Australian National University Jose Zapata 1

A Modified Extended Kalman Filter to Estimate the State of the SG4 Receiver at the Australian National University Jose Zapata 1 A Modified Extended Kalman Filter to Estimate the State of the SG4 Receiver at the Australian National University Jose Zapata 1 1 Research School of Engineering, Australian National University, Canberra,

More information

Mod. 2 p. 1. Prof. Dr. Christoph Kleinn Institut für Waldinventur und Waldwachstum Arbeitsbereich Fernerkundung und Waldinventur

Mod. 2 p. 1. Prof. Dr. Christoph Kleinn Institut für Waldinventur und Waldwachstum Arbeitsbereich Fernerkundung und Waldinventur Histograms of gray values for TM bands 1-7 for the example image - Band 4 and 5 show more differentiation than the others (contrast=the ratio of brightest to darkest areas of a landscape). - Judging from

More information

PIXPOLAR WHITE PAPER 29 th of September 2013

PIXPOLAR WHITE PAPER 29 th of September 2013 PIXPOLAR WHITE PAPER 29 th of September 2013 Pixpolar s Modified Internal Gate (MIG) image sensor technology offers numerous benefits over traditional Charge Coupled Device (CCD) and Complementary Metal

More information

32 Float v3 Quick Start Guide. AUTHORED BY ANTHONY HERNANDEZ (415)

32 Float v3 Quick Start Guide. AUTHORED BY ANTHONY HERNANDEZ (415) 32 Float v3 Quick Start Guide 32 Float v3 Trademark/Copyright Information Copyright 2013 by United Color Technologies, LLC. All rights reserved. Unified Color Technologies, BeyondRGB, and HDR Expose are

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

Applications of Flash and No-Flash Image Pairs in Mobile Phone Photography

Applications of Flash and No-Flash Image Pairs in Mobile Phone Photography Applications of Flash and No-Flash Image Pairs in Mobile Phone Photography Xi Luo Stanford University 450 Serra Mall, Stanford, CA 94305 xluo2@stanford.edu Abstract The project explores various application

More information

International Journal of Innovative Research in Engineering Science and Technology APRIL 2018 ISSN X

International Journal of Innovative Research in Engineering Science and Technology APRIL 2018 ISSN X HIGH DYNAMIC RANGE OF MULTISPECTRAL ACQUISITION USING SPATIAL IMAGES 1 M.Kavitha, M.Tech., 2 N.Kannan, M.E., and 3 S.Dharanya, M.E., 1 Assistant Professor/ CSE, Dhirajlal Gandhi College of Technology,

More information

Visibility of Detail

Visibility of Detail Visibility of Detail Radiographic Quality Quality radiographic images represents the, and information is for diagnosis. The of the anatomic structures and the accuracy of their ( ) determine the overall

More information

Color Management User Guide

Color Management User Guide Color Management User Guide Edition July 2001 Phase One A/S Roskildevej 39 DK-2000 Frederiksberg Denmark Tel +45 36 46 01 11 Fax +45 36 46 02 22 Phase One U.S. 24 Woodbine Ave Northport, New York 11768

More information

An Inherently Calibrated Exposure Control Method for Digital Cameras

An Inherently Calibrated Exposure Control Method for Digital Cameras An Inherently Calibrated Exposure Control Method for Digital Cameras Cynthia S. Bell Digital Imaging and Video Division, Intel Corporation Chandler, Arizona e-mail: cynthia.bell@intel.com Abstract Digital

More information

How does prism technology help to achieve superior color image quality?

How does prism technology help to achieve superior color image quality? WHITE PAPER How does prism technology help to achieve superior color image quality? Achieving superior image quality requires real and full color depth for every channel, improved color contrast and color

More information

of a Panoramic Image Scene

of a Panoramic Image Scene US 2005.0099.494A1 (19) United States (12) Patent Application Publication (10) Pub. No.: US 2005/0099494A1 Deng et al. (43) Pub. Date: May 12, 2005 (54) DIGITAL CAMERA WITH PANORAMIC (22) Filed: Nov. 10,

More information

CHAPTER 12 - HIGH DYNAMIC RANGE IMAGES

CHAPTER 12 - HIGH DYNAMIC RANGE IMAGES CHAPTER 12 - HIGH DYNAMIC RANGE IMAGES The most common exposure problem a nature photographer faces is a scene dynamic range that exceeds the capability of the sensor. We will see this in the histogram

More information

Project: Sudoku solver

Project: Sudoku solver Project: Sudoku solver Write a program that finds the sudoku square in the image, detects the 81 fields, and identifies the number in the fields that have a number. The output should be a 9x9 matrix with

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

DIGITAL ECLIPSE. Eclipse photos courtesy of Fred Espanak 1998

DIGITAL ECLIPSE. Eclipse photos courtesy of Fred Espanak 1998 If you ve ever experienced a total solar eclipse, then you know that film truly cannot capture the entire visual experience. Many have tried, using complex darkroom printing techniques, but now Adobe Photoshop

More information

An Efficient Color Image Segmentation using Edge Detection and Thresholding Methods

An Efficient Color Image Segmentation using Edge Detection and Thresholding Methods 19 An Efficient Color Image Segmentation using Edge Detection and Thresholding Methods T.Arunachalam* Post Graduate Student, P.G. Dept. of Computer Science, Govt Arts College, Melur - 625 106 Email-Arunac682@gmail.com

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

Optimizing throughput with Machine Vision Lighting. Whitepaper

Optimizing throughput with Machine Vision Lighting. Whitepaper Optimizing throughput with Machine Vision Lighting Whitepaper Optimizing throughput with Machine Vision Lighting Within machine vision systems, inappropriate or poor quality lighting can often result in

More information

An Introduction to Histograms in Photography

An Introduction to Histograms in Photography An Introduction to Histograms in Photography Histograms are a graphical representation of all the pixels that make up an image, and are plotted by 'Luminance' or brightness. Every pixel, regardless of

More information

SECTION I - CHAPTER 2 DIGITAL IMAGING PROCESSING CONCEPTS

SECTION I - CHAPTER 2 DIGITAL IMAGING PROCESSING CONCEPTS RADT 3463 - COMPUTERIZED IMAGING Section I: Chapter 2 RADT 3463 Computerized Imaging 1 SECTION I - CHAPTER 2 DIGITAL IMAGING PROCESSING CONCEPTS RADT 3463 COMPUTERIZED IMAGING Section I: Chapter 2 RADT

More information

IncuCyte ZOOM Fluorescent Processing Overview

IncuCyte ZOOM Fluorescent Processing Overview IncuCyte ZOOM Fluorescent Processing Overview The IncuCyte ZOOM offers users the ability to acquire HD phase as well as dual wavelength fluorescent images of living cells producing multiplexed data that

More information

Lane Detection in Automotive

Lane Detection in Automotive Lane Detection in Automotive Contents Introduction... 2 Image Processing... 2 Reading an image... 3 RGB to Gray... 3 Mean and Gaussian filtering... 5 Defining our Region of Interest... 6 BirdsEyeView Transformation...

More information

ADOBE 9A Adobe Photoshop CS3 ACE.

ADOBE 9A Adobe Photoshop CS3 ACE. ADOBE Adobe Photoshop CS3 ACE http://killexams.com/exam-detail/ A. Group the layers. B. Merge the layers. C. Link the layers. D. Align the layers. QUESTION: 112 You want to arrange 20 photographs on a

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

High Dynamic Range Imaging

High Dynamic Range Imaging High Dynamic Range Imaging 1 2 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

More information

ABSTRACT INTRODUCTION METHOD

ABSTRACT INTRODUCTION METHOD ABSTRACT This research project aims to investigate and illustrate the effects a light source s spectral distribution and colour temperature has on photographic image colour reproduction, and how this often

More information

Colour Profiling Using Multiple Colour Spaces

Colour Profiling Using Multiple Colour Spaces Colour Profiling Using Multiple Colour Spaces Nicola Duffy and Gerard Lacey Computer Vision and Robotics Group, Trinity College, Dublin.Ireland duffynn@cs.tcd.ie Abstract This paper presents an original

More information

PRECISE MEASUREMENTS OF SOLAR BEAM IRRADIANCE THROUGH IMPROVED SENSOR CALIBRATION

PRECISE MEASUREMENTS OF SOLAR BEAM IRRADIANCE THROUGH IMPROVED SENSOR CALIBRATION PRECISE MEASUREMENTS OF SOLAR BEAM IRRADIANCE THROUGH IMPROVED SENSOR CALIBRATION Norbert Geuder 1, Nicole Janotte 2, and Stefan Wilbert 3 1 Dr., CSP Services GmbH, Paseo de Almería 73-2ª, E-04001 Almería,

More information

IMAGE PROCESSING TECHNIQUE TO COUNT THE NUMBER OF LOGS IN A TIMBER TRUCK

IMAGE PROCESSING TECHNIQUE TO COUNT THE NUMBER OF LOGS IN A TIMBER TRUCK IMAGE PROCESSING TECHNIQUE TO COUNT THE NUMBER OF LOGS IN A TIMBER TRUCK Asif Rahman 1, 2, Siril Yella 1, Mark Dougherty 1 1 Department of Computer Engineering, Dalarna University, Borlänge, Sweden 2 Department

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

Real-Time Digital Image Exposure Status Detection and Circuit Implementation

Real-Time Digital Image Exposure Status Detection and Circuit Implementation Real-Time igital Image Exposure Status etection and Circuit Implementation Li Hongqin School of Electronic and Electrical Engineering Shanghai University of Engineering Science Zhang Liping School of Electronic

More information

PROCESSING LANDSCAPES

PROCESSING LANDSCAPES PROCESSING LANDSCAPES Mist in the Hope Valley Mam Tor, Peak District, taken 23 January 2017 LANDSCAPE IMAGES - AIMS Good composition (Use the Rule of Thirds if possible). Consider a low viewpoint. A feeling

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

Imaging Photometer and Colorimeter

Imaging Photometer and Colorimeter W E B R I N G Q U A L I T Y T O L I G H T. /XPL&DP Imaging Photometer and Colorimeter Two models available (photometer and colorimetry camera) 1280 x 1000 pixels resolution Measuring range 0.02 to 200,000

More information

Image Extraction using Image Mining Technique

Image Extraction using Image Mining Technique IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719 Vol. 3, Issue 9 (September. 2013), V2 PP 36-42 Image Extraction using Image Mining Technique Prof. Samir Kumar Bandyopadhyay,

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

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

EDITION 2017/2018 FILTERS CATALOGUE

EDITION 2017/2018 FILTERS CATALOGUE EDITION 2017/2018 FILTERS CATALOGUE DHG FILTERS UV FILTERS & POLARIZING FILTERS NEUTRAL DENSITY FILTERS SPECIAL EFFECT FILTERS ACHROMATIC CLOSE-UP LENS 03 04 06 08 09 DIGILINE FILTERS UV FILTERS & POLARIZING

More information

Efficient Construction of SIFT Multi-Scale Image Pyramids for Embedded Robot Vision

Efficient Construction of SIFT Multi-Scale Image Pyramids for Embedded Robot Vision Efficient Construction of SIFT Multi-Scale Image Pyramids for Embedded Robot Vision Peter Andreas Entschev and Hugo Vieira Neto Graduate School of Electrical Engineering and Applied Computer Science Federal

More information

License Plate Localisation based on Morphological Operations

License Plate Localisation based on Morphological Operations License Plate Localisation based on Morphological Operations Xiaojun Zhai, Faycal Benssali and Soodamani Ramalingam School of Engineering & Technology University of Hertfordshire, UH Hatfield, UK Abstract

More information

Adobe Photoshop. Levels

Adobe Photoshop. Levels How to correct color Once you ve opened an image in Photoshop, you may want to adjust color quality or light levels, convert it to black and white, or correct color or lens distortions. This can improve

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

Introduction to 2-D Copy Work

Introduction to 2-D Copy Work Introduction to 2-D Copy Work What is the purpose of creating digital copies of your analogue work? To use for digital editing To submit work electronically to professors or clients To share your work

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

Camera Requirements For Precision Agriculture

Camera Requirements For Precision Agriculture Camera Requirements For Precision Agriculture Radiometric analysis such as NDVI requires careful acquisition and handling of the imagery to provide reliable values. In this guide, we explain how Pix4Dmapper

More information

NON UNIFORM BACKGROUND REMOVAL FOR PARTICLE ANALYSIS BASED ON MORPHOLOGICAL STRUCTURING ELEMENT:

NON UNIFORM BACKGROUND REMOVAL FOR PARTICLE ANALYSIS BASED ON MORPHOLOGICAL STRUCTURING ELEMENT: IJCE January-June 2012, Volume 4, Number 1 pp. 59 67 NON UNIFORM BACKGROUND REMOVAL FOR PARTICLE ANALYSIS BASED ON MORPHOLOGICAL STRUCTURING ELEMENT: A COMPARATIVE STUDY Prabhdeep Singh1 & A. K. Garg2

More information

Fast and High-Quality Image Blending on Mobile Phones

Fast and High-Quality Image Blending on Mobile Phones Fast and High-Quality Image Blending on Mobile Phones Yingen Xiong and Kari Pulli Nokia Research Center 955 Page Mill Road Palo Alto, CA 94304 USA Email: {yingenxiong, karipulli}@nokiacom Abstract We present

More information

Correction of Clipped Pixels in Color Images

Correction of Clipped Pixels in Color Images Correction of Clipped Pixels in Color Images IEEE Transaction on Visualization and Computer Graphics, Vol. 17, No. 3, 2011 Di Xu, Colin Doutre, and Panos Nasiopoulos Presented by In-Yong Song School of

More information

FSI Machine Vision Training Programs

FSI Machine Vision Training Programs FSI Machine Vision Training Programs Table of Contents Introduction to Machine Vision (Course # MVC-101) Machine Vision and NeuroCheck overview (Seminar # MVC-102) Machine Vision, EyeVision and EyeSpector

More information

Camera Requirements For Precision Agriculture

Camera Requirements For Precision Agriculture Camera Requirements For Precision Agriculture Radiometric analysis such as NDVI requires careful acquisition and handling of the imagery to provide reliable values. In this guide, we explain how Pix4Dmapper

More information

32 Float v2 Quick Start Guide. AUTHORED BY ANTHONY HERNANDEZ - (415)

32 Float v2 Quick Start Guide. AUTHORED BY ANTHONY HERNANDEZ - (415) 32 Float v2 Quick Start Guide 32 Float V2 Trademark/Copyright Information Copyright 2011 by United Color Technologies, LLC. All rights reserved. Unified Color Technologies, BeyondRGB, and HDR Float are

More information

The Use of Non-Local Means to Reduce Image Noise

The Use of Non-Local Means to Reduce Image Noise The Use of Non-Local Means to Reduce Image Noise By Chimba Chundu, Danny Bin, and Jackelyn Ferman ABSTRACT Digital images, such as those produced from digital cameras, suffer from random noise that is

More information

Image interpretation and analysis

Image interpretation and analysis Image interpretation and analysis Grundlagen Fernerkundung, Geo 123.1, FS 2014 Lecture 7a Rogier de Jong Michael Schaepman Why are snow, foam, and clouds white? Why are snow, foam, and clouds white? Today

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

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

Low-Cost, On-Demand Film Digitisation and Online Delivery. Matt Garner

Low-Cost, On-Demand Film Digitisation and Online Delivery. Matt Garner Low-Cost, On-Demand Film Digitisation and Online Delivery Matt Garner (matt.garner@findmypast.com) Abstract Hundreds of millions of pages of microfilmed material are not being digitised at this time due

More information

Target detection in side-scan sonar images: expert fusion reduces false alarms

Target detection in side-scan sonar images: expert fusion reduces false alarms Target detection in side-scan sonar images: expert fusion reduces false alarms Nicola Neretti, Nathan Intrator and Quyen Huynh Abstract We integrate several key components of a pattern recognition system

More information

DECISION NUMBER FOURTEEN TO THE TREATY ON OPEN SKIES

DECISION NUMBER FOURTEEN TO THE TREATY ON OPEN SKIES DECISION NUMBER FOURTEEN TO THE TREATY ON OPEN SKIES OSCC.DEC 14 12 October 1994 METHODOLOGY FOR CALCULATING THE MINIMUM HEIGHT ABOVE GROUND LEVEL AT WHICH EACH VIDEO CAMERA WITH REAL TIME DISPLAY INSTALLED

More information

DROPLET SIZE DISTRIBUTION MEASUREMENTS OF ISO NOZZLES BY SHADOWGRAPHY METHOD

DROPLET SIZE DISTRIBUTION MEASUREMENTS OF ISO NOZZLES BY SHADOWGRAPHY METHOD Comm. Appl. Biol. Sci, Ghent University,??/?, 2015 1 DROPLET SIZE DISTRIBUTION MEASUREMENTS OF ISO NOZZLES BY SHADOWGRAPHY METHOD SUMMARY N. DE COCK 1, M. MASSINON 1, S. OULED TALEB SALAH 1,2, B. C. N.

More information

Valuable New Information for Precision Agriculture. Mike Ritter Founder & CEO - SLANTRANGE, Inc.

Valuable New Information for Precision Agriculture. Mike Ritter Founder & CEO - SLANTRANGE, Inc. Valuable New Information for Precision Agriculture Mike Ritter Founder & CEO - SLANTRANGE, Inc. SENSORS Accurate, Platform- Agnostic ANALYTICS On-Board, On-Location SLANTRANGE Delivering Valuable New Information

More information

Testing, Tuning, and Applications of Fast Physics-based Fog Removal

Testing, Tuning, and Applications of Fast Physics-based Fog Removal Testing, Tuning, and Applications of Fast Physics-based Fog Removal William Seale & Monica Thompson CS 534 Final Project Fall 2012 1 Abstract Physics-based fog removal is the method by which a standard

More information

CALIBRATED SKY LUMINANCE MAPS FOR ADVANCED DAYLIGHT SIMULATION APPLICATIONS. Danube University Krems Krems, Austria

CALIBRATED SKY LUMINANCE MAPS FOR ADVANCED DAYLIGHT SIMULATION APPLICATIONS. Danube University Krems Krems, Austria CALIBRATED SKY LUMINANCE MAPS FOR ADVANCED DAYLIGHT SIMULATION APPLICATIONS Bojana Spasojević 1 and Ardeshir Mahdavi 2 1 Department for Building and Environment Danube University Krems Krems, Austria 2

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

Digital Image Processing

Digital Image Processing Digital Image Processing 1 Patrick Olomoshola, 2 Taiwo Samuel Afolayan 1,2 Surveying & Geoinformatic Department, Faculty of Environmental Sciences, Rufus Giwa Polytechnic, Owo. Nigeria Abstract: This paper

More information

Use of digital aerial camera images to detect damage to an expressway following an earthquake

Use of digital aerial camera images to detect damage to an expressway following an earthquake Use of digital aerial camera images to detect damage to an expressway following an earthquake Yoshihisa Maruyama & Fumio Yamazaki Department of Urban Environment Systems, Chiba University, Chiba, Japan.

More information

Funded from the Scottish Hydro Gordonbush Community Fund. Metering exposure

Funded from the Scottish Hydro Gordonbush Community Fund. Metering exposure Funded from the Scottish Hydro Gordonbush Community Fund Metering exposure We have looked at the three components of exposure: Shutter speed time light allowed in. Aperture size of hole through which light

More information

Multimodal Face Recognition using Hybrid Correlation Filters

Multimodal Face Recognition using Hybrid Correlation Filters Multimodal Face Recognition using Hybrid Correlation Filters Anamika Dubey, Abhishek Sharma Electrical Engineering Department, Indian Institute of Technology Roorkee, India {ana.iitr, abhisharayiya}@gmail.com

More information

ENSC 470/894 Lab 1 V2.0 (Sept )

ENSC 470/894 Lab 1 V2.0 (Sept ) ENSC 470/894 Lab 1 V2.0 (Sept. 22 2013) Introduction: Lab 1 is designed to give students basic experience in optics. In the lab you will set up lenses on an optical table, with a LCD screen pattern as

More information