Digital Color Processing Hamid Sarve

Size: px
Start display at page:

Download "Digital Color Processing Hamid Sarve"

Transcription

1 Lecture 6 in Computerized Image Analysis Hamid Sarve hamid@cb.uu.se Reading instructions: Chapter 6 The slides 1

2 Electromagnetic Radiation Visible light (for humans) is electromagnetic radiation with wavelengths in the approximate interval of nm Gamma Xrays UV IR μwaves TV Radio nm 10 nm 0.01 m VISIBLE LIGHT 400 nm 500 nm 600 nm 700 nm 2 2

3 Light Properties Illumination Achromatic light - White or uncolored light that contains all visual wavelengths in a complete mix. Chromatic light - Colored light. Monochromatic light - A single wavelength, e.g., a laser. Reflection No color that we see consists of only one wavelength The dominating wavelength reflected by an object decides the color tone or hue. If many wavelengths are reflected in equal amounts, an object appears gray. 3 3

4 The Human Eye Rods and Cones (stavar och tappar) rods only rods cone mostly cones only rods optical nerves 4 4

5 The Rods Approx. 100 million rod cells per eye Light-sensitive receptors Used for night-vision Not used for color-vision! Rods have a slower response time compared to cones, i.e. the frequency of its temporal sampling is lower 5 5

6 The Cones Approx 5 million cone cells per eye Three types: S, peak at 445 nm (2%) M, peak at 535 nm (33%) L, peak at 575 nm (65%) Most sensitive to green light! Responsivity Primary colors 400 nm 500 nm 600 nm 700 nm 6 6

7 Mantis shrimp bönsyrseräka 12 type of color receptors! 7 7

8 Remark about our Vision The appearance of an object s intensity depends on the surroundings; the sensation is relative and not absolute 8 8

9 Trisimulus Values CIE, International Commission on Illumination 2 /10 standard observer X = s( λ) r( λ) x( λ) dλ Y = s( λ) r( λ) y( λ) dλ Z = s( λ) r( λ) z( λ) dλ standardized light source s( λ) x reflectance of the object r( λ) x CIE 1931 standard observer z y x CIE XYZ values = X=14.27 Y=14.31 Z= nm 700nm 400nm 700nm 400nm 700nm 9 9

10 CIE 1931 Color Space The projection of X + Y + Z = 1 creates CIE xy chromaticity diagram CIE standard white when x = y = z Not possible to produce all colors by mixing three primary colors. Gamut: subset of colors which can be accurately represented in a given circumstance 10 10

11 RGB: Red, Green, Blue Additative mix R + G + B = White, where R + G = Y, etc. %RGB in matlab rgbimg = imread( colorful.jpg ); Rchannel = rgbimg (:,:,1); %uint8 Gchannel = rgbimg (:,:,2); %uint8 Bchannel = rgbimg (:,:,3); %uint8 The RGB cube 11 11

12 Additative Mix R channel G channel B channel RGB: 12 12

13 CMYK [C M Y] = 1 [R G B] Subtractive mix C + M + Y = black where C + M = B, etc Common in printing The CMY cube 13 13

14 RGB - Pros & Cons + Mimicing the human color perception Easy and straightforward Suited for hardware implemenation - Not practical for human description of colors No decoupler of intensity 14 14

15 HSV (HSI) Related to how humans perceive color Intensity is decoupled Channels: Hue: dominant wavelength (in degrees!) Saturation: colorfulness (intensity of the color) Intensity/Value brightness % HSV in matlab rgbimg = imread( colorful.jpg ); hsvimg = rgb2hsv(rgbimg); Hchannel Schannel Vchannel = hsvimg (:,:,1); %dble = hsvimg (:,:,2); %dble = hsvimg (:,:,3); %dble 15 15

16 RGB to HSV θ H = 360 θ if if B B > G G θ = cos for s=0 not defined! [( R G ) + ( R B) ] 2 ( R G ) + ( R B)( G B) S = 1 3 [ min ( R, G, B )] R + G + B V or V = = ( R 3 + G R G + B ) B There are also other definitions! 16 16

17 HSV H channel S channel V channel HSV: 17 17

18 Usage of HSV Intensity is decoupled That s often where we want to operate Original image RGB image histogram equalized for each channel individually HSV image histogram equalized for the V-channel only 18 18

19 HSV usage, cont Masking out a region with similiar color Find the pixels in the range of the desired color in the Hue-channel Set all other pixels to 0 in the Saturation-channel %imghsv : HSV-transformed image %masked H-value: and mask = (imghsv(:,:,1) < 0.1) + (imghsv(:,:,1)> 0.9); S = imghsv(:,:,2).* mask; imghsv_r (:,:,3) = imghsv(:,:,3); imghsv_r (:,:,2) = S; imghsv_r (:,:,1) = imghsv(:,:,1); 19 19

20 HSV usage, cont Another example Find the pixels in the range of the desired color in the Hue-channel Set all other pixels to 0 in the Saturation-channel %imghsv : HSV-transformed image %H-value of the tree : mask = (imghsv(:,:,1) < 0.15) + (imghsv(:,:,1)> 0.27); S = imghsv(:,:,2).* (1-mask); imghsv_g (:,:,3) = imghsv(:,:,3); imghsv_g (:,:,2) = S; imghsv_g (:,:,1) = imghsv(:,:,1); 20 20

21 HSV- Pros & Cons + Practical for human description of colors Intensity decoupled - Difficult transformation (singularities) Difficult to display Furthermore: Not device independent (the latter also applies to RGB) 21 21

22 CIE L*a*b* Device independent Perceptually uniform Intensity decoupled studies indicate that L*a*b* separates information better than other color spaces For transformation, see in the course book Perceptual equal distances 22 22

23 L*a*b* L* channel a* channel b* channel L*a*b*: 23 23

24 Other Color Spaces YCbCr similar to L*a*b* Used for JPEG Uses the fact that the human eye is more sensitive to variations in lightness than variations in hue and saturation, and more bandwidth (bits) is used for Y. Similar color spaces: YIQ / YUV used for TV 24 24

25 Pseudo Coloring The eye can distinguish between only about different shades of gray But about 100,000 10,000,000 colors. Useful to display gray scale images using color to visualize the information better important to include a color scale in the images to understand what the colors illustrate. It seems rather cumbersome to measure the number of distinguishable colors by humans. Follow the discussion at:

26 Example of Pseudo-Coloring in PET Intensity slicing Each intensity is assigned a color 26 26

27 Another Example of Pseudo-Coloring Lake Mälaren, 1997 chlorophyll suspended inorganic particulate material coloured dissolved organic matter 27 27

28 Noise in Color Images Noise less visually noticeable in color images μ=0, v=0.01 Gaussian Noise Grayscale image (on V only) RGB (each channel distored individually) 28 28

29 Noise in the HSV-space Noise most visible in the H- and S-channel H S V 29 29

30 Smoothing Neighborhood averaging can be carried on a per-color-plane basis - or on the intensity only Different results however! See below: Original HSV (on V only) RGB (each channel filtered individually) 7x7 Gaussian 30 30

31 Look out for the H-channel You might end up with color artefacts if H-channel is filtered Remember: H-channel consists of angles H-channel blurred with a 3x3 Gaussian 31 31

32 Edge Detection As in smoothing: per-color-plane / intensity channel Original HSV (on V only) RGB (each channel filtered individually) Laplace 32 32

33 Segmentation based on Color In RGB-space: Look at the euclidean distance: D ( z, a ) = z a where z is an arbitary point in the RGB space, a is the RGB vector = [( z R a R ) 2 + ( z ( z If D(z,a) < Dt: Pixel belongs to the object (where Dt is the tolerated difference) R G a G ) 2 + B a B ) 2 ] Color-based segmentation in HSV-space: color information is found in the Hue- & Saturation-channel Dt:radius of the spehere G Inside the sphere: the object z Outside the sphere: background 33 33

34 Segmentation based on Color Example: Original Segmented sky 34 34

35 Compression of Color Images Our vision is less sensitive to fine color details than to fine brightness details Concentrate the compression on the chroma (color) information 35 35

36 Multispectral Imaging A more general description of an image: f(x,y,z,w,t) x,y,z 3 spatial dimensions t time -temporal dimension w wavelength, spectral dimension Images in sampled in different wavelengths Not only in the visible spectra Remember the shrimp? 36 36

37 Multispectral imaging cont. Gamma Xrays UV IR μwaves TV Radio nm 10 nm 500 nm 10 um 0.01 m Used in (among others) Remote sensing Astronomy Thermography 37 37

38 Assignment 3 Landsat Satellite Image: 7 Bands, um from the visual spectra to IR Your data: 512 x 512 x

Outline. Quantizing Intensities. Achromatic Light. Optical Illusion. Quantizing Intensities. CS 430/585 Computer Graphics I

Outline. Quantizing Intensities. Achromatic Light. Optical Illusion. Quantizing Intensities. CS 430/585 Computer Graphics I CS 430/585 Computer Graphics I Week 8, Lecture 15 Outline Light Physical Properties of Light and Color Eye Mechanism for Color Systems to Define Light and Color David Breen, William Regli and Maxim Peysakhov

More information

Overview. Raster Graphics and Color. Overview. Display Hardware. Liquid Crystal Display (LCD) Cathode Ray Tube (CRT)

Overview. Raster Graphics and Color. Overview. Display Hardware. Liquid Crystal Display (LCD) Cathode Ray Tube (CRT) Raster Graphics and Color Greg Humphreys CS445: Intro Graphics University of Virginia, Fall 2004 Color models Color models Display Hardware Video display devices Cathode Ray Tube (CRT) Liquid Crystal Display

More information

CBIR: Colour Representation. COMPSCI.708.S1.C A/P Georgy Gimel farb

CBIR: Colour Representation. COMPSCI.708.S1.C A/P Georgy Gimel farb CBIR: Colour Representation COMPSCI.708.S1.C A/P Georgy Gimel farb Colour Representation Colour is the most widely used visual feature in multimedia context CBIR systems are not aware of the difference

More information

Computer Vision. Color image processing. 25 August 2014

Computer Vision. Color image processing. 25 August 2014 Computer Vision Color image processing 25 August 2014 Copyright 2001 2014 by NHL Hogeschool and Van de Loosdrecht Machine Vision BV All rights reserved j.van.de.loosdrecht@nhl.nl, jaap@vdlmv.nl Color image

More information

1. Introduction to image processing

1. Introduction to image processing 1 1. Introduction to image processing 1.1 What is an image? An image is an array, or a matrix, of square pixels (picture elements) arranged in columns and rows. Figure 1: An image an array or a matrix

More information

CS 325 Computer Graphics

CS 325 Computer Graphics CS 325 Computer Graphics 01 / 25 / 2016 Instructor: Michael Eckmann Today s Topics Review the syllabus Review course policies Color CIE system chromaticity diagram color gamut, complementary colors, dominant

More information

Color Management Terms

Color Management Terms Written by Jonathan Sachs Copyright 2001-2003 Digital Light & Color Achromatic Achromatic means having no color. Calibration Calibration is the process of making a particular device such as a monitor,

More information

HSI BASED COLOUR IMAGE EQUALIZATION USING ITERATIVE n th ROOT AND n th POWER

HSI BASED COLOUR IMAGE EQUALIZATION USING ITERATIVE n th ROOT AND n th POWER HSI BASED COLOUR IMAGE EQUALIZATION USING ITERATIVE n th ROOT AND n th POWER Gholamreza Anbarjafari icv Group, IMS Lab, Institute of Technology, University of Tartu, Tartu 50411, Estonia sjafari@ut.ee

More information

2.3 Spatial Resolution, Pixel Size, and Scale

2.3 Spatial Resolution, Pixel Size, and Scale Section 2.3 Spatial Resolution, Pixel Size, and Scale Page 39 2.3 Spatial Resolution, Pixel Size, and Scale For some remote sensing instruments, the distance between the target being imaged and the platform,

More information

The Information Processing model

The Information Processing model The Information Processing model A model for understanding human cognition. 1 from: Wickens, Lee, Liu, & Becker (2004) An Introduction to Human Factors Engineering. p. 122 Assumptions in the IP model Each

More information

Color image processing: pseudocolor processing

Color image processing: pseudocolor processing Color image processing: pseudocolor processing by Gleb V. Tcheslavski: gleb@ee.lamar.edu http://ee.lamar.edu/gleb/dip/index.htm Spring 2008 ELEN 4304/5365 DIP 1 Preliminaries Pseudocolor (false color)

More information

Colour Image Segmentation Technique for Screen Printing

Colour Image Segmentation Technique for Screen Printing 60 R.U. Hewage and D.U.J. Sonnadara Department of Physics, University of Colombo, Sri Lanka ABSTRACT Screen-printing is an industry with a large number of applications ranging from printing mobile phone

More information

THE NATURE OF LIGHT AND COLOR

THE NATURE OF LIGHT AND COLOR THE NATURE OF LIGHT AND COLOR THE PHYSICS OF LIGHT Electromagnetic radiation travels through space as electric energy and magnetic energy. At times the energy acts like a wave and at other times it acts

More information

Perception of Light and Color

Perception of Light and Color Perception of Light and Color Theory and Practice Trichromacy Three cones types in retina a b G+B +R Cone sensitivity functions 100 80 60 40 20 400 500 600 700 Wavelength (nm) Short wavelength sensitive

More information

Assessment. Presenter: Yupu Zhang, Guoliang Jin, Tuo Wang Computer Vision 2008 Fall

Assessment. Presenter: Yupu Zhang, Guoliang Jin, Tuo Wang Computer Vision 2008 Fall Automatic Photo Quality Assessment Presenter: Yupu Zhang, Guoliang Jin, Tuo Wang Computer Vision 2008 Fall Estimating i the photorealism of images: Distinguishing i i paintings from photographs h Florin

More information

ColourSpace Conversions

ColourSpace Conversions ColourSpace Conversions Adrian Ford(ajoec1@wmin.ac.uk ) and Alan Roberts (Alan.Roberts@rd.bbc.co.uk). August11,1998(b) Contents 1 Introduction 3 2 Some Colour Definitions and Explanations. 3 2.1

More information

Review for Introduction to Remote Sensing: Science Concepts and Technology

Review for Introduction to Remote Sensing: Science Concepts and Technology Review for Introduction to Remote Sensing: Science Concepts and Technology Ann Johnson Associate Director ann@baremt.com Funded by National Science Foundation Advanced Technological Education program [DUE

More information

Lecture 16: A Camera s Image Processing Pipeline Part 1. Kayvon Fatahalian CMU 15-869: Graphics and Imaging Architectures (Fall 2011)

Lecture 16: A Camera s Image Processing Pipeline Part 1. Kayvon Fatahalian CMU 15-869: Graphics and Imaging Architectures (Fall 2011) Lecture 16: A Camera s Image Processing Pipeline Part 1 Kayvon Fatahalian CMU 15-869: Graphics and Imaging Architectures (Fall 2011) Today (actually all week) Operations that take photons to an image Processing

More information

Understanding HD: Frame Rates, Color & Compression

Understanding HD: Frame Rates, Color & Compression Understanding HD: Frame Rates, Color & Compression HD Format Breakdown An HD Format Describes (in no particular order) Resolution Frame Rate Bit Rate Color Space Bit Depth Color Model / Color Gamut Color

More information

UNIVERSITY OF LONDON GOLDSMITHS COLLEGE. B. Sc. Examination Sample CREATIVE COMPUTING. IS52020A (CC227) Creative Computing 2.

UNIVERSITY OF LONDON GOLDSMITHS COLLEGE. B. Sc. Examination Sample CREATIVE COMPUTING. IS52020A (CC227) Creative Computing 2. UNIVERSITY OF LONDON GOLDSMITHS COLLEGE B. Sc. Examination Sample CREATIVE COMPUTING IS52020A (CC227) Creative Computing 2 Duration: 3 hours Date and time: There are six questions in this paper; you should

More information

INTRODUCTION IMAGE PROCESSING >INTRODUCTION & HUMAN VISION UTRECHT UNIVERSITY RONALD POPPE

INTRODUCTION IMAGE PROCESSING >INTRODUCTION & HUMAN VISION UTRECHT UNIVERSITY RONALD POPPE INTRODUCTION IMAGE PROCESSING >INTRODUCTION & HUMAN VISION UTRECHT UNIVERSITY RONALD POPPE OUTLINE Course info Image processing Definition Applications Digital images Human visual system Human eye Reflectivity

More information

Colour spaces - perceptual, historical and applicational background

Colour spaces - perceptual, historical and applicational background Colour spaces - perceptual, historical and applicational background Marko Tkalčič, Jurij F. Tasič Faculty of electrical engineering University of Ljubljana Tržaška 25, 1001 Ljubljana, Slovenia email: marko.tkalcic@fe.uni-lj.si

More information

Denis White Laboratory for Computer Graphics and Spatial Analysis Graduate School of Design Harvard University Cambridge, Massachusetts 02138

Denis White Laboratory for Computer Graphics and Spatial Analysis Graduate School of Design Harvard University Cambridge, Massachusetts 02138 Introduction INTERACTIVE COLOR MAPPING Denis White Laboratory for Computer Graphics and Spatial Analysis Graduate School of Design Harvard University Cambridge, Massachusetts 02138 The information theory

More information

Colour Science Typography Frontend Dev

Colour Science Typography Frontend Dev Colour Science Typography Frontend Dev Name Kevin Eger Who am I? Why should you listen to anything I say? Summary What the next hour of your life looks like Colour Science Typography Frontend Dev 1. 2.

More information

How Landsat Images are Made

How Landsat Images are Made How Landsat Images are Made Presentation by: NASA s Landsat Education and Public Outreach team June 2006 1 More than just a pretty picture Landsat makes pretty weird looking maps, and it isn t always easy

More information

SAMPLE MIDTERM QUESTIONS

SAMPLE MIDTERM QUESTIONS Geography 309 Sample MidTerm Questions Page 1 SAMPLE MIDTERM QUESTIONS Textbook Questions Chapter 1 Questions 4, 5, 6, Chapter 2 Questions 4, 7, 10 Chapter 4 Questions 8, 9 Chapter 10 Questions 1, 4, 7

More information

Digital Image Fundamentals. Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr

Digital Image Fundamentals. Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr Digital Image Fundamentals Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr Imaging process Light reaches surfaces in 3D. Surfaces reflect. Sensor element receives

More information

Spectral Response for DigitalGlobe Earth Imaging Instruments

Spectral Response for DigitalGlobe Earth Imaging Instruments Spectral Response for DigitalGlobe Earth Imaging Instruments IKONOS The IKONOS satellite carries a high resolution panchromatic band covering most of the silicon response and four lower resolution spectral

More information

Computer Vision: Machine Vision Filters. Computer Vision. Optical Filters. 25 August 2014

Computer Vision: Machine Vision Filters. Computer Vision. Optical Filters. 25 August 2014 Computer Vision Optical Filters 25 August 2014 Copyright 2001 2014 by NHL Hogeschool, Van de Loosdrecht Machine Vision BV and Klaas Dijkstra All rights reserved j.van.de.loosdrecht@nhl.nl, jaap@vdlmv.nl,

More information

Using Image J to Measure the Brightness of Stars (Written by Do H. Kim)

Using Image J to Measure the Brightness of Stars (Written by Do H. Kim) Using Image J to Measure the Brightness of Stars (Written by Do H. Kim) What is Image J? Image J is Java-based image processing program developed at the National Institutes of Health. Image J runs on everywhere,

More information

Module 13 : Measurements on Fiber Optic Systems

Module 13 : Measurements on Fiber Optic Systems Module 13 : Measurements on Fiber Optic Systems Lecture : Measurements on Fiber Optic Systems Objectives In this lecture you will learn the following Measurements on Fiber Optic Systems Attenuation (Loss)

More information

Introduction to Digital Resolution

Introduction to Digital Resolution Introduction to Digital Resolution 2011 Copyright Les Walkling 2011 Adobe Photoshop screen shots reprinted with permission from Adobe Systems Incorporated. Version 2011:02 CONTENTS Pixels of Resolution

More information

Resolutions of Remote Sensing

Resolutions of Remote Sensing Resolutions of Remote Sensing 1. Spatial (what area and how detailed) 2. Spectral (what colors bands) 3. Temporal (time of day/season/year) 4. Radiometric (color depth) Spatial Resolution describes how

More information

Lectures 6&7: Image Enhancement

Lectures 6&7: Image Enhancement Lectures 6&7: Image Enhancement Leena Ikonen Pattern Recognition (MVPR) Lappeenranta University of Technology (LUT) leena.ikonen@lut.fi http://www.it.lut.fi/ip/research/mvpr/ 1 Content Background Spatial

More information

Chromatic Improvement of Backgrounds Images Captured with Environmental Pollution Using Retinex Model

Chromatic Improvement of Backgrounds Images Captured with Environmental Pollution Using Retinex Model Chromatic Improvement of Backgrounds Images Captured with Environmental Pollution Using Retinex Model Mario Dehesa, Alberto J. Rosales, Francisco J. Gallegos, Samuel Souverville, and Isabel V. Hernández

More information

From lowest energy to highest energy, which of the following correctly orders the different categories of electromagnetic radiation?

From lowest energy to highest energy, which of the following correctly orders the different categories of electromagnetic radiation? From lowest energy to highest energy, which of the following correctly orders the different categories of electromagnetic radiation? From lowest energy to highest energy, which of the following correctly

More information

APPLICATIONS AND USAGE

APPLICATIONS AND USAGE APPLICATIONS AND USAGE http://www.tutorialspoint.com/dip/applications_and_usage.htm Copyright tutorialspoint.com Since digital image processing has very wide applications and almost all of the technical

More information

CALIBRATION AND OPERATION OF PANASONIC PLASMA MONITORS JULY 2009

CALIBRATION AND OPERATION OF PANASONIC PLASMA MONITORS JULY 2009 CALIBRATION AND OPERATION OF PANASONIC PLASMA MONITORS JULY 2009 Overview Plasma video monitors provide high resolution images with excellent contrast and dynamic range, low black levels, and saturated

More information

ICC Recommendations for Color Measurement

ICC Recommendations for Color Measurement White Paper #3 Level: Introductory Date: Dec 2004 ICC Recommendations for Color Measurement Introduction In order to prepare a useful device profile based on the International Color Consortium s Specification,

More information

Color Balance in LASER Scanner. Point Clouds

Color Balance in LASER Scanner. Point Clouds Institut für Parallele und Verteilte Systeme Abteilung BildVerstehen Universität Stuttgart Universitätsstraße 38 D-70569 Stuttgart Master Thesis Nr. 3477 Color Balance in LASER Scanner Point Clouds Umair

More information

INFITEC - A NEW STEREOSCOPIC VISUALISATION TOOL BY WAVELENGTH MULTIPLEX IMAGING

INFITEC - A NEW STEREOSCOPIC VISUALISATION TOOL BY WAVELENGTH MULTIPLEX IMAGING INFITEC - A NEW STEREOSCOPIC VISUALISATION TOOL BY WAVELENGTH MULTIPLEX IMAGING Helmut Jorke, Markus Fritz INFITEC GmbH, Lise-Meitner-Straße 9, 89081 Ulm info@infitec.net Phone +49 731 550299 56 Fax _

More information

Scanners and How to Use Them

Scanners and How to Use Them Written by Jonathan Sachs Copyright 1996-1999 Digital Light & Color Introduction A scanner is a device that converts images to a digital file you can use with your computer. There are many different types

More information

0.28" Quadruple Digit Numeric Displays. Technical Data Sheet. Model No.: KW4-281XSB

0.28 Quadruple Digit Numeric Displays. Technical Data Sheet. Model No.: KW4-281XSB .28" Quadruple Digit Numeric Displays Technical Data Sheet Model No.: KW4-281XSB Spec No.:W2841C/D Rev No.: V.2 Date:Sep/3/29 Page: 1 OF 6 Features:.28 (inch) digit height. Excellent segment uniformity.

More information

Calibration Best Practices

Calibration Best Practices Calibration Best Practices for Manufacturers SpectraCal, Inc. 17544 Midvale Avenue N., Suite 100 Shoreline, WA 98133 (206) 420-7514 info@spectracal.com http://studio.spectracal.com Calibration Best Practices

More information

Choosing Colors for Data Visualization Maureen Stone January 17, 2006

Choosing Colors for Data Visualization Maureen Stone January 17, 2006 Choosing Colors for Data Visualization Maureen Stone January 17, 2006 The problem of choosing colors for data visualization is expressed by this quote from information visualization guru Edward Tufte:

More information

A comparison between a CRT and a LCD monitors colors rendering

A comparison between a CRT and a LCD monitors colors rendering A comparison between a CRT and a LCD monitors colors rendering TOADERE FLORIN, NIKOS E. MASTORAKIS INCDTIM Cluj Napoca Str. Donath, nr. 65-103, Cluj Napoca, 400293, ROMANIA Florin.Toadere@bel.utcluj.ro

More information

Escaping RGBland: Selecting Colors for Statistical Graphics

Escaping RGBland: Selecting Colors for Statistical Graphics Escaping RGBland: Selecting Colors for Statistical Graphics Achim Zeileis, Kurt Hornik, Paul Murrell http://statmath.wu.ac.at/~zeileis/ Overview Motivation Color in statistical graphics Challenges Illustrations

More information

Luckylight. 60.20mm (2.4") 8 8 RGB color Dot Matrix LED Displays Technical Data Sheet. Model No.: KWM-50884XRGBB

Luckylight. 60.20mm (2.4) 8 8 RGB color Dot Matrix LED Displays Technical Data Sheet. Model No.: KWM-50884XRGBB 6.2mm (2.4") RGB color Dot Matrix LED Displays Technical Data Sheet Model No.: KWM-54XRGBB Spec No: W23A/BRGB Rev No: V.2 Date:Sep//29 Page: OF 9 Features: 2.4inch (6.2mm) digit height. Excellent segment

More information

Remote Sensing. Vandaag. Voordelen Remote Sensing Wat is Remote Sensing? Vier elementen Remote Sensing systeem

Remote Sensing. Vandaag. Voordelen Remote Sensing Wat is Remote Sensing? Vier elementen Remote Sensing systeem Remote Sensing 1 Vandaag Voordelen Remote Sensing Wat is Remote Sensing? Vier elementen Remote Sensing systeem 2 Nederland Vanaf 700 km hoogte Landsat TM mozaïek 3 Europa vanaf 36000 km hoogte 4 5 Mount

More information

Expert Color Choices for Presenting Data

Expert Color Choices for Presenting Data Expert Color Choices for Presenting Data Maureen Stone, StoneSoup Consulting The problem of choosing colors for data visualization is expressed by this quote from information visualization guru Edward

More information

W O R K F L O W T E S T F O R M S

W O R K F L O W T E S T F O R M S W O R K F L O W T E S T F O R M S E N D - T O - E N D W O R K F L O W I M A G E Q U A L I T Y A S S U R A N C E U S E R G U I D E Isis Imaging Corporation Isis Imaging Corporation Workflow Test Forms Suite

More information

Armstrong Atlantic State University Engineering Studies MATLAB Marina Image Processing Primer

Armstrong Atlantic State University Engineering Studies MATLAB Marina Image Processing Primer Armstrong Atlantic State University Engineering Studies MATLAB Marina Image Processing Primer Prerequisites The Image Processing Primer assumes nowledge of the MATLAB IDE, MATLAB help, arithmetic operations,

More information

Removing Weather Effects from Monochrome Images

Removing Weather Effects from Monochrome Images Removing Weather Effects from Monochrome Images Srinivasa G. Narasimhan and Shree K. Nayar Department of Computer Science, Columbia University, New York, 10027 Email: {srinivas, nayar}@cs.columbia.edu

More information

The Role of SPOT Satellite Images in Mapping Air Pollution Caused by Cement Factories

The Role of SPOT Satellite Images in Mapping Air Pollution Caused by Cement Factories The Role of SPOT Satellite Images in Mapping Air Pollution Caused by Cement Factories Dr. Farrag Ali FARRAG Assistant Prof. at Civil Engineering Dept. Faculty of Engineering Assiut University Assiut, Egypt.

More information

1051-232 Imaging Systems Laboratory II. Laboratory 4: Basic Lens Design in OSLO April 2 & 4, 2002

1051-232 Imaging Systems Laboratory II. Laboratory 4: Basic Lens Design in OSLO April 2 & 4, 2002 05-232 Imaging Systems Laboratory II Laboratory 4: Basic Lens Design in OSLO April 2 & 4, 2002 Abstract: For designing the optics of an imaging system, one of the main types of tools used today is optical

More information

Robot Perception Continued

Robot Perception Continued Robot Perception Continued 1 Visual Perception Visual Odometry Reconstruction Recognition CS 685 11 Range Sensing strategies Active range sensors Ultrasound Laser range sensor Slides adopted from Siegwart

More information

UNDERSTANDING DIFFERENT COLOUR SCHEMES MONOCHROMATIC COLOUR

UNDERSTANDING DIFFERENT COLOUR SCHEMES MONOCHROMATIC COLOUR UNDERSTANDING DIFFERENT COLOUR SCHEMES MONOCHROMATIC COLOUR Monochromatic Colours are all the Colours (tints, tones and shades) of a single hue. Monochromatic colour schemes are derived from a single base

More information

Digital Color Workflows and the HP DreamColor LP2480zx Professional LCD Display

Digital Color Workflows and the HP DreamColor LP2480zx Professional LCD Display Digital Color Workflows and the HP DreamColor LP2480zx Professional LCD Display Improving accuracy and predictability in color processing at the designer s desk can increase productivity and improve quality

More information

A Proposal for OpenEXR Color Management

A Proposal for OpenEXR Color Management A Proposal for OpenEXR Color Management Florian Kainz, Industrial Light & Magic Revision 5, 08/05/2004 Abstract We propose a practical color management scheme for the OpenEXR image file format as used

More information

Computational Foundations of Cognitive Science

Computational Foundations of Cognitive Science Computational Foundations of Cognitive Science Lecture 15: Convolutions and Kernels Frank Keller School of Informatics University of Edinburgh keller@inf.ed.ac.uk February 23, 2010 Frank Keller Computational

More information

Thank you for choosing NCS Colour Services, annually we help hundreds of companies to manage their colours. We hope this Colour Definition Report

Thank you for choosing NCS Colour Services, annually we help hundreds of companies to manage their colours. We hope this Colour Definition Report Thank you for choosing NCS Colour Services, annually we help hundreds of companies to manage their colours. We hope this Colour Definition Report will support you in your colour management process and

More information

Experiment C-31 Color Absorption

Experiment C-31 Color Absorption 1 Experiment C-31 Color Absorption Objectives To understand the concepts of light waves and color. To investigate how red, green and blue liquids absorb light of different wavelengths. To learn about colorimeter

More information

Implementing ISO12646 standards for soft proofing in a standardized printing workflow

Implementing ISO12646 standards for soft proofing in a standardized printing workflow Implementing ISO12646 standards for soft proofing in a standardized printing workflow Aditya Sole Implementing ISO12646 standards for soft proofing in a standardized Gjøvik University College, The Norwegian

More information

High Resolution Planetary Imaging

High Resolution Planetary Imaging High Resolution Planetary Imaging Fighting the Atmosphere Getting out of the Atmosphere Adaptive Optics Lucky Imaging Lucky Imaging is the process of capturing planets using a CCD video camera. A software

More information

CONFOCAL LASER SCANNING MICROSCOPY TUTORIAL

CONFOCAL LASER SCANNING MICROSCOPY TUTORIAL CONFOCAL LASER SCANNING MICROSCOPY TUTORIAL Robert Bagnell 2006 This tutorial covers the following CLSM topics: 1) What is the optical principal behind CLSM? 2) What is the spatial resolution in X, Y,

More information

Filters for Black & White Photography

Filters for Black & White Photography Filters for Black & White Photography Panchromatic Film How it works. Panchromatic film records all colors of light in the same tones of grey. Light Intensity (the number of photons per square inch) is

More information

Adaptive HSI Data Processing for Near-Real-time Analysis and Spectral Recovery *

Adaptive HSI Data Processing for Near-Real-time Analysis and Spectral Recovery * Adaptive HSI Data Processing for Near-Real-time Analysis and Spectral Recovery * Su May Hsu, 1 Hsiao-hua Burke and Michael Griffin MIT Lincoln Laboratory, Lexington, Massachusetts 1. INTRODUCTION Hyperspectral

More information

Environmental Remote Sensing GEOG 2021

Environmental Remote Sensing GEOG 2021 Environmental Remote Sensing GEOG 2021 Lecture 4 Image classification 2 Purpose categorising data data abstraction / simplification data interpretation mapping for land cover mapping use land cover class

More information

Composite Video Separation Techniques

Composite Video Separation Techniques TM Composite Video Separation Techniques Application Note October 1996 AN9644 Author: Stephen G. LaJeunesse Introduction The most fundamental job of a video decoder is to separate the color from the black

More information

Review Vocabulary spectrum: a range of values or properties

Review Vocabulary spectrum: a range of values or properties Standards 7.3.19: Explain that human eyes respond to a narrow range of wavelengths of the electromagnetic spectrum. 7.3.20: Describe that something can be seen when light waves emitted or reflected by

More information

Selecting the appropriate band combination for an RGB image using Landsat imagery

Selecting the appropriate band combination for an RGB image using Landsat imagery Selecting the appropriate band combination for an RGB image using Landsat imagery Ned Horning Version: 1.0 Creation Date: 2004-01-01 Revision Date: 2004-01-01 License: This document is licensed under a

More information

Planetary Imaging Workshop Larry Owens

Planetary Imaging Workshop Larry Owens Planetary Imaging Workshop Larry Owens Lowell Observatory, 1971-1973 Backyard Telescope, 2005 How is it possible? How is it done? Lowell Observatory Sequence,1971 Acquisition E-X-P-E-R-I-M-E-N-T-A-T-I-O-N!

More information

Overview. What is EMR? Electromagnetic Radiation (EMR) LA502 Special Studies Remote Sensing

Overview. What is EMR? Electromagnetic Radiation (EMR) LA502 Special Studies Remote Sensing LA502 Special Studies Remote Sensing Electromagnetic Radiation (EMR) Dr. Ragab Khalil Department of Landscape Architecture Faculty of Environmental Design King AbdulAziz University Room 103 Overview What

More information

Digital Image Basics. Introduction. Pixels and Bitmaps. Written by Jonathan Sachs Copyright 1996-1999 Digital Light & Color

Digital Image Basics. Introduction. Pixels and Bitmaps. Written by Jonathan Sachs Copyright 1996-1999 Digital Light & Color Written by Jonathan Sachs Copyright 1996-1999 Digital Light & Color Introduction When using digital equipment to capture, store, modify and view photographic images, they must first be converted to a set

More information

Chapter 2. Point transformation. Look up Table (LUT) Fundamentals of Image processing

Chapter 2. Point transformation. Look up Table (LUT) Fundamentals of Image processing Chapter 2 Fundamentals of Image processing Point transformation Look up Table (LUT) 1 Introduction (1/2) 3 Types of operations in Image Processing - m: rows index - n: column index Point to point transformation

More information

Three Key Paper Properties

Three Key Paper Properties Three Key Paper Properties Whiteness, Brightness and Shade Demystifying Three Key Paper Properties Whiteness, Brightness and Shade Xerox Supplies, See the Difference Quality Makes Prepared by: Xerox Corporation

More information

PIXEL-LEVEL IMAGE FUSION USING BROVEY TRANSFORME AND WAVELET TRANSFORM

PIXEL-LEVEL IMAGE FUSION USING BROVEY TRANSFORME AND WAVELET TRANSFORM PIXEL-LEVEL IMAGE FUSION USING BROVEY TRANSFORME AND WAVELET TRANSFORM Rohan Ashok Mandhare 1, Pragati Upadhyay 2,Sudha Gupta 3 ME Student, K.J.SOMIYA College of Engineering, Vidyavihar, Mumbai, Maharashtra,

More information

Using MATLAB to Measure the Diameter of an Object within an Image

Using MATLAB to Measure the Diameter of an Object within an Image Using MATLAB to Measure the Diameter of an Object within an Image Keywords: MATLAB, Diameter, Image, Measure, Image Processing Toolbox Author: Matthew Wesolowski Date: November 14 th 2014 Executive Summary

More information

Visualization and Feature Extraction, FLOW Spring School 2016 Prof. Dr. Tino Weinkauf. Flow Visualization. Image-Based Methods (integration-based)

Visualization and Feature Extraction, FLOW Spring School 2016 Prof. Dr. Tino Weinkauf. Flow Visualization. Image-Based Methods (integration-based) Visualization and Feature Extraction, FLOW Spring School 2016 Prof. Dr. Tino Weinkauf Flow Visualization Image-Based Methods (integration-based) Spot Noise (Jarke van Wijk, Siggraph 1991) Flow Visualization:

More information

Light Waves and Matter

Light Waves and Matter Name: Light Waves and Matter Read from Lesson 2 of the Light Waves and Color chapter at The Physics Classroom: http://www.physicsclassroom.com/class/light/u12l2a.html MOP Connection: Light and Color: sublevel

More information

Electromagnetic Radiation (EMR) and Remote Sensing

Electromagnetic Radiation (EMR) and Remote Sensing Electromagnetic Radiation (EMR) and Remote Sensing 1 Atmosphere Anything missing in between? Electromagnetic Radiation (EMR) is radiated by atomic particles at the source (the Sun), propagates through

More information

TerraColor White Paper

TerraColor White Paper TerraColor White Paper TerraColor is a simulated true color digital earth imagery product developed by Earthstar Geographics LLC. This product was built from imagery captured by the US Landsat 7 (ETM+)

More information

Cloud Masking and Cloud Products

Cloud Masking and Cloud Products Cloud Masking and Cloud Products MODIS Operational Algorithm MOD35 Paul Menzel, Steve Ackerman, Richard Frey, Kathy Strabala, Chris Moeller, Liam Gumley, Bryan Baum MODIS Cloud Masking Often done with

More information

Spectroscopy Using the Tracker Video Analysis Program

Spectroscopy Using the Tracker Video Analysis Program Spectroscopy Using the Tracker Video Analysis Program Douglas Brown Cabrillo College Aptos CA 95003 dobrown@cabrillo.edu Spectroscopy has important applications in many fields and deserves more attention

More information

Principle of Thermal Imaging

Principle of Thermal Imaging Section 8 All materials, which are above 0 degrees Kelvin (-273 degrees C), emit infrared energy. The infrared energy emitted from the measured object is converted into an electrical signal by the imaging

More information

Visibility optimization for data visualization: A Survey of Issues and Techniques

Visibility optimization for data visualization: A Survey of Issues and Techniques Visibility optimization for data visualization: A Survey of Issues and Techniques Ch Harika, Dr.Supreethi K.P Student, M.Tech, Assistant Professor College of Engineering, Jawaharlal Nehru Technological

More information

EVERLIGHT ELECTRONICS CO., LTD. Technical Data Sheet 0805 Package Chip LED Preliminary

EVERLIGHT ELECTRONICS CO., LTD. Technical Data Sheet 0805 Package Chip LED Preliminary Feature RoHS compliant. This is a preliminary specification Chip LED package. intended for design purposes and Colorless clear resin. Wide viewing angle 130 o. subject to change without prior Brightness:

More information

Visual perception basics. Image aquisition system. P. Strumiłło

Visual perception basics. Image aquisition system. P. Strumiłło Visual perception basics Image aquisition system P. Strumiłło Light perception by humans Humans perceive approx. 90% of information about the environment by means of visual system. Efficiency of the human

More information

1 Laboratory #5: Grating Spectrometer

1 Laboratory #5: Grating Spectrometer SIMG-215-20061: LABORATORY #5 1 Laboratory #5: Grating Spectrometer 1.1 Objective: To observe and measure the spectra of different light sources. 1.2 Materials: 1. OSA optics kit. 2. Nikon digital camera

More information

CBT-90 TE Thermally Enhanced LED Chipset

CBT-90 TE Thermally Enhanced LED Chipset CBT-90 TE Thermally Enhanced LED Chipset Features: Table of Contents Technology Overview...2 Test Specifications...2 Ordering Information...3 Monochrome Binning Structure...4 Large, monolithic chip with

More information

Basic 3D reconstruction in Imaris 7.6.1

Basic 3D reconstruction in Imaris 7.6.1 Basic 3D reconstruction in Imaris 7.6.1 Task The aim of this tutorial is to understand basic Imaris functionality by performing surface reconstruction of glia cells in culture, in order to visualize enclosed

More information

Web: www.stp.hu; www.logipix.eu; www.walkdvr.com

Web: www.stp.hu; www.logipix.eu; www.walkdvr.com StP Technical Development Ltd. version: 1 Contact: Address: 11-13. Késmárk st., 1158 Budapest, Hungary Phone: +36 1 410-0556; +36 20 480-5933 Fax: +36 1 414-0913 E-mail: info@stp.hu Technical support:

More information

The Eye of the Beholder Designing for Colour-Blind Users

The Eye of the Beholder Designing for Colour-Blind Users Christine Rigden The Eye of the Beholder Designing for Colour-Blind Users Colour-blind computer users see things differently from most people, but this is seldom considered in the design of software or

More information

Introduction. Stefano Ferrari. Università degli Studi di Milano stefano.ferrari@unimi.it. Elaborazione delle immagini (Image processing I)

Introduction. Stefano Ferrari. Università degli Studi di Milano stefano.ferrari@unimi.it. Elaborazione delle immagini (Image processing I) Introduction Stefano Ferrari Università degli Studi di Milano stefano.ferrari@unimi.it Elaborazione delle immagini (Image processing I) academic year 2011 2012 Image processing Computer science concerns

More information

Assessment of Camera Phone Distortion and Implications for Watermarking

Assessment of Camera Phone Distortion and Implications for Watermarking Assessment of Camera Phone Distortion and Implications for Watermarking Aparna Gurijala, Alastair Reed and Eric Evans Digimarc Corporation, 9405 SW Gemini Drive, Beaverton, OR 97008, USA 1. INTRODUCTION

More information

Digital image processing

Digital image processing 746A27 Remote Sensing and GIS Lecture 4 Digital image processing Chandan Roy Guest Lecturer Department of Computer and Information Science Linköping University Digital Image Processing Most of the common

More information

Processing the Image or Can you Believe what you see? Light and Color for Nonscientists PHYS 1230

Processing the Image or Can you Believe what you see? Light and Color for Nonscientists PHYS 1230 Processing the Image or Can you Believe what you see? Light and Color for Nonscientists PHYS 1230 Optical Illusions http://www.michaelbach.de/ot/mot_mib/index.html Vision We construct images unconsciously

More information

CIELAB, GMA 1. INTRODUCTION

CIELAB, GMA 1. INTRODUCTION Can Gamut Mapping Quality Be Predicted by Colour Image Difference Formulae? Eriko Bando*, Jon Y. Hardeberg, David Connah The Norwegian Color Research Laboratory, Gjøvik University College, Gjøvik, Norway

More information