Scanner MTF Evaluation using edge gradient analysis

Size: px
Start display at page:

Download "Scanner MTF Evaluation using edge gradient analysis"

Transcription

1 Physical Optics Lab #5 April 2015 Scanner MTF Evaluation using edge gradient analysis In this lab, you will be using a standard method from the ISO to evaluate the Modulation Transfer Function (MTF) of a scanner. The method is based on edge-gradient analysis, applied to a slanted (rotated) edge feature in a test chart. The calculations will use Matlab scripts, so you do not need extensive experience with Matlab. Background: Edge-gradient analysis is a well-established method for measuring the one-dimensional MTF of an imaging system. For the purposes of this lab, we will define the MTF as the modulus of the Fourier transform of the optical point-spread function (impulse response). The point-spread function is the optical image formed from a point source. For a one-dimensional MTF, we use the line-spread function, where this is the image of a line source. Figure 1 shows the basic steps of edge-gradient analysis. We first acquire a test image of a high-quality edge feature, i.e., a sharp, straight edge from a reference test chart. From this edge, we compute the edge profile, a one-dimensional trace of the system output across the edge in a direction perpendicular to the edge. This edge profile is a function (which becomes a vector after sampling) of distance across the image or scene. The line profile is then computed as the derivative of the edge profile. We then compute the discrete Fourier transform of this vector using the FFT algorithm, which produces a complex-valued output vector. The modulus of this complex-valued vector is the output edge modulation function. Acquire edge Compute profile Discrete Fourier transform Figure 1: Basic steps of Edge Gradient Analysis The test object (with the edge) is characterized the same way by using a reference scanner so that its frequency content is known. The response of the test scanner may be compared to the frequency content of the test object to evaluate the system MTF as the ratio of output modulation to the input modulation. If the test target edge can be considered ideal, at least over the spatial frequency range of interest, then its modulation is flat, i.e., it is composed of all frequencies in equal amounts. The output modulation function of the image of this edge, when appropriately scaled, is the measured MTF. Slanted-Edge Evaluation The edge-gradient method just mentioned was adapted for use to evaluate the imaging performance of digital cameras and scanners. The particular method is based on a slanted, rotated, or tilted edge. Reference 1 describes the various steps in the algorithm. Figure 2 of this reference has ten steps listed, which we will not go into here. Briefly, the method is used to measure measuring the edge modulation function or MTF for a digital image capture system. Using the slanted edge has two advantages;; 1. The algorithm finds the edge, and so is not dependent on precise orientation of the test target 2. The super sampling of the edge profile allows measurement of a pre-sampling MTF. This facilitates the measurement of potential aliasing due to the image sampling.

2 The principle of the ISO standard [2] is shown in Figure 2. Figure 2: ISO slant-edge MTF measurement: (a) knife-edge target, (b) projection of edge showing how the edge is rendered onto different pixels and averaged to form the 1-D edge profile (from Modified slanted-edge method and multidirectional modulation transfer function estimation by K.Masaoka, et al., Optics Express, 22(5), pp (2014) Note that in the ISO standard and technical literature, the computed measure is referred to as the Spatial Frequency Response (SFR) rather than MTF. This is in part to differentiate the practical edge-based measurement (edge-sfr) from the imaging parameter for an optical imaging system (MTF). You could say that the slanted-edge SFR provides an estimate of the edge modulus or MTF parameter. References: 1. P. D. Burns, Slanted-Edge MTF for Digital Camera and Scanner Analysis, Proc. PICS Conf., IS&T, , ISO 12233:2000, Photography - electronic still picture cameras resolution measurements, ISO (2000). 3. K.Masaoka, T. Yamashita, Y. Nishida, and M. Sugawara, Modified slanted-edge method and multidirectional modulation transfer function estimation, Optics Express, 22(5), pp (2014) Matlab Software: 1. Download the function sfrmat3 and supporting functions from, 2. Unzip sfr3.zip file and save the folder sfrmat3_post within the Matlab folder on your computer. 3. Add this folder to the Matlab path using pathtool 4. Type >> which sfrmat3 You should see the full path to sfrmat3.m 5. You can type >> help sfrmat3 for full details, but the function sfr_lab will walk you through using the function. 2

3 Scanner SFR Measurement 1. Using the test target provided, scan the test target using the scanner which will be evaluating. If possible save the image file in TIF format. For example, Scan the target repeatedly without moving it, at several different sampling resolution settings. I used 300, 400, 600, 800 pixels/inch. 2. Open the function sfr_lab.m This script can be used to select image files and compute SFR values for each. Select a consistent edge region for all files, e.g., a horizontal edge. You will see that I plot a computed luminance SFR based on the red, green and blue records. Here is an example for my Epson V600 Scanner for the horizontal edge, so this is the vertical SFR. (Steps 1, 2 in the script). You can repeat this for a vertical edge Scanner SFR for several sampling settings Frequency, cy/mm Did you expect your result? Do they show optical limitations? 3

4 3. In part 3 select a single image file and compute the SFR for the red, green and blue color records. For example, 4. Things to consider: What did you learn about the scanner under test? Were horizontal and vertical results similar? When acquiring the images did you investigate any other driver software settings? 4

5 Listing of sfr_lab.m % sfr_lab % Peter Burns, 14 April 2015 % 1. Select four image files, captured at several resolution settings % (pixels/inch) [f1,p1] = uigetfile('*.*','select 4 image file','multiselect', 'on'); nd = length(f1); if ischar(f1) nd =1; temp = f1; clear f1; f1{1}=temp; end % Allocate for pixels/inch setting for each file dx = zeros(1,nd); sym = [{'r'} {'g'} {'b'} {'k'} {'--r'} {'--g'} {'--b'} {':k'}]; info = imfinfo([p1,f1{2}]) % 2. Loop for region selection, SFR computing and platting for ii = 1:nd % pull image resolution from header info = imfinfo([p1,f1{ii}]); dx(ii) = info.xresolution; % read image array [~, dat] = imageread([p1,f1{ii}]); d1 = getroi(dat,'select an edge'); % Compute SFR [status, dat1] = sfrmat3(1, dx(ii), [.3.6.1], d1); figure(1) plot(dat1(:,1), dat1(:,5),sym{ii}), hold on %pause end hold off xlabel('frequency, cy/mm') ylabel('sfr') legend(num2str(dx')) title('scanner SFR for several sampling settings') % edit to change plotted x,y axis limits axis([ ]) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % 3. Compare SFR results for each color record for a single file [f2,p2] = uigetfile('*.*','select 4 image file','multiselect', 'off'); [~, dat2] = imageread([p2,f2]); [d2,c1] = getroi(dat2,'select an edge'); 5

6 % We will plot results versus cycles/pixel, so dx = 1 pixel dx = 1; % Compute SFR [status, dat2, e1, fitme, esf, nbin, del2] = sfrmat3(1, 1, [.3.6.1], d2); figure(2) plot(dat2(:,1), dat2(:,2),'r'), hold on plot(dat2(:,1), dat2(:,3),'g') plot(dat2(:,1), dat2(:,4),'b') hold off axis([ ]) xlabel('frequency, cy/pixel') ylabel('sfr') legend('r', 'g', 'b') 6

Application of Tatian s Method to Slanted-Edge MTF Measurement

Application of Tatian s Method to Slanted-Edge MTF Measurement Application of s Method to Slanted-Edge MTF Measurement Peter D. Burns Eastman Kodak Company, Rochester, NY USA 465-95 ABSTRACT The 33 method for the measurement of the spatial frequency response () of

More information

Refined Measurement of Digital Image Texture Loss Peter D. Burns Burns Digital Imaging Fairport, NY USA

Refined Measurement of Digital Image Texture Loss Peter D. Burns Burns Digital Imaging Fairport, NY USA Copyright 3 SPIE Refined Measurement of Digital Image Texture Loss Peter D. Burns Burns Digital Imaging Fairport, NY USA ABSTRACT Image texture is the term given to the information-bearing fluctuations

More information

ImCheck3 Installation and User s Guide

ImCheck3 Installation and User s Guide Image Science Associates 10 May 2010 ImCheck3 Installation and User s Guide Peter Burns pdburns@ieee.org ImCheck3 is intended to demonstrate the use of widely distributed printed test targets (test charts)

More information

Low-Frequency MTF Estimation for Digital Imaging Devices Using Slanted Edge Analysis

Low-Frequency MTF Estimation for Digital Imaging Devices Using Slanted Edge Analysis Low-Frequency MTF Estimation for Digital Imaging Devices Using Slanted Edge Analysis Don Williams and Peter D. Burns Eastman Kodak Company, Rochester, NY USA 465-925 ABSTRACT Modulation transfer function

More information

Accuracy of 3D Range Scanners by Measurement of the Slanted Edge Modulation Transfer Function

Accuracy of 3D Range Scanners by Measurement of the Slanted Edge Modulation Transfer Function Accuracy of 3D Range Scanners by Measurement of the Slanted Edge Modulation Transfer Function Michael Goesele Christian Fuchs Hans-Peter Seidel MPI Informatik Saarbrücken, Germany {goesele,cfuchs,hpseidel}@mpi-sb.mpg.de

More information

Chapters 1-4: Summary

Chapters 1-4: Summary Chapters 1-4: Summary So far, we have been investigating the image acquisition process. Chapter 1: General introduction Chapter 2: Radiation source and properties Chapter 3: Radiation interaction with

More information

CIS 580, Machine Perception, Spring 2016 Homework 2 Due: :59AM

CIS 580, Machine Perception, Spring 2016 Homework 2 Due: :59AM CIS 580, Machine Perception, Spring 2016 Homework 2 Due: 2015.02.24. 11:59AM Instructions. Submit your answers in PDF form to Canvas. This is an individual assignment. 1 Recover camera orientation By observing

More information

Range Imaging Through Triangulation. Range Imaging Through Triangulation. Range Imaging Through Triangulation. Range Imaging Through Triangulation

Range Imaging Through Triangulation. Range Imaging Through Triangulation. Range Imaging Through Triangulation. Range Imaging Through Triangulation Obviously, this is a very slow process and not suitable for dynamic scenes. To speed things up, we can use a laser that projects a vertical line of light onto the scene. This laser rotates around its vertical

More information

NCSU REU - Edge Detection with 2D Wavelets

NCSU REU - Edge Detection with 2D Wavelets NCSU REU - Edge Detection with 2D Wavelets Kevin McGoff July 12, 7 Contents 1 Introduction 1 2 Getting the coefficients 2 3 Organizing the coefficients 2 4 Detecting edges 2 5 Results 3 6 Conclusions 3

More information

Digital Image Processing. Prof. P. K. Biswas. Department of Electronic & Electrical Communication Engineering

Digital Image Processing. Prof. P. K. Biswas. Department of Electronic & Electrical Communication Engineering Digital Image Processing Prof. P. K. Biswas Department of Electronic & Electrical Communication Engineering Indian Institute of Technology, Kharagpur Lecture - 21 Image Enhancement Frequency Domain Processing

More information

IMPORTANT INSTRUCTIONS

IMPORTANT INSTRUCTIONS 2017 Imaging Science Ph.D. Qualifying Examination June 9, 2017 9:00AM to 12:00PM IMPORTANT INSTRUCTIONS You must complete two (2) of the three (3) questions given for each of the core graduate classes.

More information

CS201 Computer Vision Lect 4 - Image Formation

CS201 Computer Vision Lect 4 - Image Formation CS201 Computer Vision Lect 4 - Image Formation John Magee 9 September, 2014 Slides courtesy of Diane H. Theriault Question of the Day: Why is Computer Vision hard? Something to think about from our view

More information

BOLERO. Hair volume/surface measurement fly-away/frizz analysis system. Sebastien BREUGNOT & Robert GEORGE Bossa Nova Technologies

BOLERO. Hair volume/surface measurement fly-away/frizz analysis system. Sebastien BREUGNOT & Robert GEORGE Bossa Nova Technologies BOLERO Hair volume/surface measurement fly-away/frizz analysis system Sebastien BREUGNOT & Robert GEORGE Bossa Nova Technologies 11922 Jefferson Boulevard Culver City, 90230, CA, USA www.bossanovatech.com

More information

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, April 5

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, April 5 CS/NEUR125 Brains, Minds, and Machines Lab 8: Using fmri to Discover Language Areas in the Brain Due: Wednesday, April 5 In this lab, you will analyze fmri data from an experiment that was designed to

More information

DIGITIZING LOMOKINO FOOTAGE

DIGITIZING LOMOKINO FOOTAGE DIGITIZING LOMOKINO FOOTAGE The Lomokino is a fun & unique film camera that allows you to shoot short movies with typical photo 35mm film. This guide will show you how to scan the processed film and produce

More information

Miniaturized Camera Systems for Microfactories

Miniaturized Camera Systems for Microfactories Miniaturized Camera Systems for Microfactories Timo Prusi, Petri Rokka, and Reijo Tuokko Tampere University of Technology, Department of Production Engineering, Korkeakoulunkatu 6, 33720 Tampere, Finland

More information

Introduction. Lab Kit Contents

Introduction. Lab Kit Contents Introduction MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science 6.007 Electromagnetic Energy: From Motors to Lasers Spring 2011 Lab 4 Pre-Lab: Spectrometer

More information

Neurophysical Model by Barten and Its Development

Neurophysical Model by Barten and Its Development Chapter 14 Neurophysical Model by Barten and Its Development According to the Barten model, the perceived foveal image is corrupted by internal noise caused by statistical fluctuations, both in the number

More information

An introduction to JPEG compression using MATLAB

An introduction to JPEG compression using MATLAB An introduction to JPEG compression using MATLAB Arno Swart 30 October, 2003 1 Introduction This document describes the popular JPEG still image coding format. The aim is to compress images while maintaining

More information

Image warping introduction

Image warping introduction Image warping introduction 1997-2015 Josef Pelikán CGG MFF UK Praha pepca@cgg.mff.cuni.cz http://cgg.mff.cuni.cz/~pepca/ Warping 2015 Josef Pelikán, http://cgg.mff.cuni.cz/~pepca 1 / 22 Warping.. image

More information

CS 464 Review. Review of Computer Graphics for Final Exam

CS 464 Review. Review of Computer Graphics for Final Exam CS 464 Review Review of Computer Graphics for Final Exam Goal: Draw 3D Scenes on Display Device 3D Scene Abstract Model Framebuffer Matrix of Screen Pixels In Computer Graphics: If it looks right then

More information

Motion Analysis. Motion analysis. Now we will talk about. Differential Motion Analysis. Motion analysis. Difference Pictures

Motion Analysis. Motion analysis. Now we will talk about. Differential Motion Analysis. Motion analysis. Difference Pictures Now we will talk about Motion Analysis Motion analysis Motion analysis is dealing with three main groups of motionrelated problems: Motion detection Moving object detection and location. Derivation of

More information

How to create a Slide Show with NeroVision Express 2

How to create a Slide Show with NeroVision Express 2 How to create a Slide Show with NeroVision Express 2 1. First to launch NeroVision Express 2: Go to Start->All Programs->Nero>NeroVision Express 2->NeroVision Express. Or you can just go to Start->NeroVision

More information

Instruction manual for T3DS calculator software. Analyzer for terahertz spectra and imaging data. Release 2.4

Instruction manual for T3DS calculator software. Analyzer for terahertz spectra and imaging data. Release 2.4 Instruction manual for T3DS calculator software Release 2.4 T3DS calculator v2.4 16/02/2018 www.batop.de1 Table of contents 0. Preliminary remarks...3 1. Analyzing material properties...4 1.1 Loading data...4

More information

Digital Image Fundamentals. Prof. George Wolberg Dept. of Computer Science City College of New York

Digital Image Fundamentals. Prof. George Wolberg Dept. of Computer Science City College of New York Digital Image Fundamentals Prof. George Wolberg Dept. of Computer Science City College of New York Objectives In this lecture we discuss: - Image acquisition - Sampling and quantization - Spatial and graylevel

More information

A full-resolution 8K single-chip portable camera system

A full-resolution 8K single-chip portable camera system 8640 pixels 4320 pixels https://doi.org/10.2352/issn.2470-1173.2017.11.imse-179 2017, Society for Imaging Science and Technology A full-resolution 8K single-chip portable camera system Tomohiro Nakamura,

More information

Modify Panel. Flatten Tab

Modify Panel. Flatten Tab AFM Image Processing Most images will need some post acquisition processing. A typical procedure is to: i) modify the image by flattening, using a planefit, and possibly also a mask, ii) analyzing the

More information

Analysis of Planar Anisotropy of Fibre Systems by Using 2D Fourier Transform

Analysis of Planar Anisotropy of Fibre Systems by Using 2D Fourier Transform Maroš Tunák, Aleš Linka Technical University in Liberec Faculty of Textile Engineering Department of Textile Materials Studentská 2, 461 17 Liberec 1, Czech Republic E-mail: maros.tunak@tul.cz ales.linka@tul.cz

More information

2.161 Signal Processing: Continuous and Discrete Fall 2008

2.161 Signal Processing: Continuous and Discrete Fall 2008 MIT OpenCourseWare http://ocw.mit.edu 2.161 Signal Processing: Continuous and Discrete Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. MASSACHUSETTS

More information

Image processing in frequency Domain

Image processing in frequency Domain Image processing in frequency Domain Introduction to Frequency Domain Deal with images in: -Spatial domain -Frequency domain Frequency Domain In the frequency or Fourier domain, the value and location

More information

CIRCULAR MOIRÉ PATTERNS IN 3D COMPUTER VISION APPLICATIONS

CIRCULAR MOIRÉ PATTERNS IN 3D COMPUTER VISION APPLICATIONS CIRCULAR MOIRÉ PATTERNS IN 3D COMPUTER VISION APPLICATIONS Setiawan Hadi Mathematics Department, Universitas Padjadjaran e-mail : shadi@unpad.ac.id Abstract Geometric patterns generated by superimposing

More information

ksa MOS Ultra-Scan Performance Test Data

ksa MOS Ultra-Scan Performance Test Data ksa MOS Ultra-Scan Performance Test Data Introduction: ksa MOS Ultra Scan 200mm Patterned Silicon Wafers The ksa MOS Ultra Scan is a flexible, highresolution scanning curvature and tilt-measurement system.

More information

Visual Physics Camera Parallax Lab 1

Visual Physics Camera Parallax Lab 1 In this experiment you will be learning how to locate the camera properly in order to identify and minimize the sources of error that are introduced by parallax and perspective. These sources of error

More information

The Steerable Pyramid: A Flexible Architecture for Multi-Scale Derivative Computation

The Steerable Pyramid: A Flexible Architecture for Multi-Scale Derivative Computation MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com The Steerable Pyramid: A Flexible Architecture for Multi-Scale Derivative Computation Eero P. Simoncelli, William T. Freeman TR95-15 December

More information

Quality control phantoms and protocol for a tomography system

Quality control phantoms and protocol for a tomography system Quality control phantoms and protocol for a tomography system Lucía Franco 1 1 CT AIMEN, C/Relva 27A O Porriño Pontevedra, Spain, lfranco@aimen.es Abstract Tomography systems for non-destructive testing

More information

Spatial resolution study of a neutron imaging system using the slanted edge method.

Spatial resolution study of a neutron imaging system using the slanted edge method. Spatial resolution study of a neutron imaging system using the slanted edge method. L. Boukerdja (1), M. Guerrache (2), O. Dendene (1), A. Ali (1) 1) Centre de Recherche Nucléaire de Birine, B.P. 180,

More information

Scaled representations

Scaled representations Scaled representations Big bars (resp. spots, hands, etc.) and little bars are both interesting Stripes and hairs, say Inefficient to detect big bars with big filters And there is superfluous detail in

More information

CS Exam 1 Review Problems Fall 2017

CS Exam 1 Review Problems Fall 2017 CS 45500 Exam 1 Review Problems Fall 2017 1. What is a FrameBuffer data structure? What does it contain? What does it represent? How is it used in a graphics rendering pipeline? 2. What is a Scene data

More information

Ray Tracer I: Ray Casting Due date: 12:00pm December 3, 2001

Ray Tracer I: Ray Casting Due date: 12:00pm December 3, 2001 Computer graphics Assignment 5 1 Overview Ray Tracer I: Ray Casting Due date: 12:00pm December 3, 2001 In this assignment you will implement the camera and several primitive objects for a ray tracer. We

More information

The Paper Project Guide to Confocal Imaging at Home & in the Classroom

The Paper Project Guide to Confocal Imaging at Home & in the Classroom The Paper Project Guide to Confocal Imaging at Home & in the Classroom http://lifesciences.asu.edu/paperproject The Paper Project Guide to Confocal Imaging at Home & in the Classroom CJ Kazilek & Dennis

More information

Project Goals: Particle size distribution with shape information (roundness, aspect ratio) with highest precision and accuracy.

Project Goals: Particle size distribution with shape information (roundness, aspect ratio) with highest precision and accuracy. CANTY PROCESS TECHNOLOGY 60 Donner Road Lockport, NY 14094 Phone: (716) 62-4227 Fax: (716) 62-4228 e-mail: sales@jmcanty.com Lab Test Report Sample Identity- Granular material described as: Purpose: SAM1

More information

Home Lab 7 Refraction, Ray Tracing, and Snell s Law

Home Lab 7 Refraction, Ray Tracing, and Snell s Law Home Lab Week 7 Refraction, Ray Tracing, and Snell s Law Home Lab 7 Refraction, Ray Tracing, and Snell s Law Activity 7-1: Snell s Law Objective: Verify Snell s law Materials Included: Laser pointer Cylindrical

More information

Surfaces and Partial Derivatives

Surfaces and Partial Derivatives Surfaces and James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 15, 2017 Outline 1 2 Tangent Planes Let s go back to our simple surface

More information

Image georeferencing is the process of developing a model to transform from pixel coordinates into GIS coordinates such as meters on the ground.

Image georeferencing is the process of developing a model to transform from pixel coordinates into GIS coordinates such as meters on the ground. Image georeferencing is the process of developing a model to transform from pixel coordinates into GIS coordinates such as meters on the ground. Image rectification is the process of using your georeferencing

More information

RASNIK Image Processing with a Steepest Ascent Algorithm

RASNIK Image Processing with a Steepest Ascent Algorithm ATLAS Internal Note MUON-No-092 RASNIK Image Processing with a Steepest Ascent Algorithm Kevan S. Hashemi and James R. Bensinger Brandeis University August 1995 Introduction The RASNIK alignment instrument

More information

Multimedia Systems Video II (Video Coding) Mahdi Amiri April 2012 Sharif University of Technology

Multimedia Systems Video II (Video Coding) Mahdi Amiri April 2012 Sharif University of Technology Course Presentation Multimedia Systems Video II (Video Coding) Mahdi Amiri April 2012 Sharif University of Technology Video Coding Correlation in Video Sequence Spatial correlation Similar pixels seem

More information

ENGN2911I: 3D Photography and Geometry Processing Assignment 1: 3D Photography using Planar Shadows

ENGN2911I: 3D Photography and Geometry Processing Assignment 1: 3D Photography using Planar Shadows ENGN2911I: 3D Photography and Geometry Processing Assignment 1: 3D Photography using Planar Shadows Instructor: Gabriel Taubin Assignment written by: Douglas Lanman 29 January 2009 Figure 1: 3D Photography

More information

Outline 7/2/201011/6/

Outline 7/2/201011/6/ Outline Pattern recognition in computer vision Background on the development of SIFT SIFT algorithm and some of its variations Computational considerations (SURF) Potential improvement Summary 01 2 Pattern

More information

CMP 477 Computer Graphics Module 2: Graphics Systems Output and Input Devices. Dr. S.A. Arekete Redeemer s University, Ede

CMP 477 Computer Graphics Module 2: Graphics Systems Output and Input Devices. Dr. S.A. Arekete Redeemer s University, Ede CMP 477 Computer Graphics Module 2: Graphics Systems Output and Input Devices Dr. S.A. Arekete Redeemer s University, Ede Introduction The widespread recognition of the power and utility of computer graphics

More information

Available online at ScienceDirect. Energy Procedia 69 (2015 )

Available online at   ScienceDirect. Energy Procedia 69 (2015 ) Available online at www.sciencedirect.com ScienceDirect Energy Procedia 69 (2015 ) 1885 1894 International Conference on Concentrating Solar Power and Chemical Energy Systems, SolarPACES 2014 Heliostat

More information

Z series Camera Calibration

Z series Camera Calibration Z series Camera Calibration Calibration Field Place 30 5cm flat reflector targets 1 foot apart on three columns. Place 10 targets on each column vertically. The columns should be approximately 10 feet

More information

Digital Image Processing. Image Enhancement in the Frequency Domain

Digital Image Processing. Image Enhancement in the Frequency Domain Digital Image Processing Image Enhancement in the Frequency Domain Topics Frequency Domain Enhancements Fourier Transform Convolution High Pass Filtering in Frequency Domain Low Pass Filtering in Frequency

More information

Augmented Reality II - Camera Calibration - Gudrun Klinker May 11, 2004

Augmented Reality II - Camera Calibration - Gudrun Klinker May 11, 2004 Augmented Reality II - Camera Calibration - Gudrun Klinker May, 24 Literature Richard Hartley and Andrew Zisserman, Multiple View Geometry in Computer Vision, Cambridge University Press, 2. (Section 5,

More information

Topics and things to know about them:

Topics and things to know about them: Practice Final CMSC 427 Distributed Tuesday, December 11, 2007 Review Session, Monday, December 17, 5:00pm, 4424 AV Williams Final: 10:30 AM Wednesday, December 19, 2007 General Guidelines: The final will

More information

Fotonic E-series User Manual

Fotonic E-series User Manual Fotonic E-series User Manual Document number 402660 Rev F 24/06/2015 WARNING! Do not under any circumstances use the camera without first reading the entire Quick Start Guide and User Manual. 1. Introduction...

More information

Beam Profilier - Beamage 3.0

Beam Profilier - Beamage 3.0 Profilier - age 3.0 KEY FEATURES High resolution (160x120 points) 2.2 MPixels resolution gives accurate profile measurements on very small beams Large Area The 11.3 x 6.0 mm sensor allows to measure very

More information

Linescan System Design for Robust Web Inspection

Linescan System Design for Robust Web Inspection Linescan System Design for Robust Web Inspection Vision Systems Design Webinar, December 2011 Engineered Excellence 1 Introduction to PVI Systems Automated Test & Measurement Equipment PC and Real-Time

More information

Today. Motivation. Motivation. Image gradient. Image gradient. Computational Photography

Today. Motivation. Motivation. Image gradient. Image gradient. Computational Photography Computational Photography Matthias Zwicker University of Bern Fall 009 Today Gradient domain image manipulation Introduction Gradient cut & paste Tone mapping Color-to-gray conversion Motivation Cut &

More information

Section 1 Establishing an Instrument Connection

Section 1 Establishing an Instrument Connection Manual for Sweep VI Fall 2011 DO NOT FORGET TO SAVE YOUR DATA TO A NEW LOCATION, OTHER THAN THE TEMP FOLDER ON YOUR LAB STATION COMPUTER! FAILURE TO DO SO WILL RESULT IN LOST DATA WHEN YOU LOG OUT! 1.1.

More information

What is Frequency Domain Analysis?

What is Frequency Domain Analysis? R&D Technical Bulletin P. de Groot 9/3/93 What is Frequency Domain Analysis? Abstract: The Zygo NewView is a scanning white-light interferometer that uses frequency domain analysis (FDA) to generate quantitative

More information

Computational Photography

Computational Photography Computational Photography Matthias Zwicker University of Bern Fall 2010 Today Light fields Introduction Light fields Signal processing analysis Light field cameras Application Introduction Pinhole camera

More information

03 Vector Graphics. Multimedia Systems. 2D and 3D Graphics, Transformations

03 Vector Graphics. Multimedia Systems. 2D and 3D Graphics, Transformations Multimedia Systems 03 Vector Graphics 2D and 3D Graphics, Transformations Imran Ihsan Assistant Professor, Department of Computer Science Air University, Islamabad, Pakistan www.imranihsan.com Lectures

More information

Occlusion Detection of Real Objects using Contour Based Stereo Matching

Occlusion Detection of Real Objects using Contour Based Stereo Matching Occlusion Detection of Real Objects using Contour Based Stereo Matching Kenichi Hayashi, Hirokazu Kato, Shogo Nishida Graduate School of Engineering Science, Osaka University,1-3 Machikaneyama-cho, Toyonaka,

More information

Computational Methods for Radiance. Render the full variety offered by the direct observation of objects. (Computationally).

Computational Methods for Radiance. Render the full variety offered by the direct observation of objects. (Computationally). Computational Methods for Radiance Render the full variety offered by the direct observation of objects. (Computationally). Methods for Plenoptic 1.0 Computing with Radiance Goal: Render the full variety

More information

Face Detection Using Color Based Segmentation and Morphological Processing A Case Study

Face Detection Using Color Based Segmentation and Morphological Processing A Case Study Face Detection Using Color Based Segmentation and Morphological Processing A Case Study Dr. Arti Khaparde*, Sowmya Reddy.Y Swetha Ravipudi *Professor of ECE, Bharath Institute of Science and Technology

More information

CIS 580, Machine Perception, Spring 2015 Homework 1 Due: :59AM

CIS 580, Machine Perception, Spring 2015 Homework 1 Due: :59AM CIS 580, Machine Perception, Spring 2015 Homework 1 Due: 2015.02.09. 11:59AM Instructions. Submit your answers in PDF form to Canvas. This is an individual assignment. 1 Camera Model, Focal Length and

More information

Robert Matthew Buckley. Nova Southeastern University. Dr. Laszlo. MCIS625 On Line. Module 2 Graphics File Format Essay

Robert Matthew Buckley. Nova Southeastern University. Dr. Laszlo. MCIS625 On Line. Module 2 Graphics File Format Essay 1 Robert Matthew Buckley Nova Southeastern University Dr. Laszlo MCIS625 On Line Module 2 Graphics File Format Essay 2 JPEG COMPRESSION METHOD Joint Photographic Experts Group (JPEG) is the most commonly

More information

Coding and Modulation in Cameras

Coding and Modulation in Cameras Mitsubishi Electric Research Laboratories Raskar 2007 Coding and Modulation in Cameras Ramesh Raskar with Ashok Veeraraghavan, Amit Agrawal, Jack Tumblin, Ankit Mohan Mitsubishi Electric Research Labs

More information

CHAPTER 5 MOTION DETECTION AND ANALYSIS

CHAPTER 5 MOTION DETECTION AND ANALYSIS CHAPTER 5 MOTION DETECTION AND ANALYSIS 5.1. Introduction: Motion processing is gaining an intense attention from the researchers with the progress in motion studies and processing competence. A series

More information

Sorted bar plot with 45 degree labels in R

Sorted bar plot with 45 degree labels in R Sorted bar plot with 45 degree labels in R In this exercise we ll plot a bar graph, sort it in decreasing order (big to small from left to right) and place long labels under the bars. The labels will be

More information

Performance Evaluation of Monitoring System Using IP Camera Networks

Performance Evaluation of Monitoring System Using IP Camera Networks 1077 Performance Evaluation of Monitoring System Using IP Camera Networks Maysoon Hashim Ismiaal Department of electronic and communications, faculty of engineering, university of kufa Abstract Today,

More information

Direction Fields; Euler s Method

Direction Fields; Euler s Method Direction Fields; Euler s Method It frequently happens that we cannot solve first order systems dy (, ) dx = f xy or corresponding initial value problems in terms of formulas. Remarkably, however, this

More information

Marcel Worring Intelligent Sensory Information Systems

Marcel Worring Intelligent Sensory Information Systems Marcel Worring worring@science.uva.nl Intelligent Sensory Information Systems University of Amsterdam Information and Communication Technology archives of documentaries, film, or training material, video

More information

Lecture 16: Computer Vision

Lecture 16: Computer Vision CS442/542b: Artificial ntelligence Prof. Olga Veksler Lecture 16: Computer Vision Motion Slides are from Steve Seitz (UW), David Jacobs (UMD) Outline Motion Estimation Motion Field Optical Flow Field Methods

More information

Pop Quiz 1 [10 mins]

Pop Quiz 1 [10 mins] Pop Quiz 1 [10 mins] 1. An audio signal makes 250 cycles in its span (or has a frequency of 250Hz). How many samples do you need, at a minimum, to sample it correctly? [1] 2. If the number of bits is reduced,

More information

Lecture 16: Computer Vision

Lecture 16: Computer Vision CS4442/9542b: Artificial Intelligence II Prof. Olga Veksler Lecture 16: Computer Vision Motion Slides are from Steve Seitz (UW), David Jacobs (UMD) Outline Motion Estimation Motion Field Optical Flow Field

More information

TABLE OF CONTENTS PRODUCT DESCRIPTION VISUALIZATION OPTIONS MEASUREMENT OPTIONS SINGLE MEASUREMENT / TIME SERIES BEAM STABILITY POINTING STABILITY

TABLE OF CONTENTS PRODUCT DESCRIPTION VISUALIZATION OPTIONS MEASUREMENT OPTIONS SINGLE MEASUREMENT / TIME SERIES BEAM STABILITY POINTING STABILITY TABLE OF CONTENTS PRODUCT DESCRIPTION VISUALIZATION OPTIONS MEASUREMENT OPTIONS SINGLE MEASUREMENT / TIME SERIES BEAM STABILITY POINTING STABILITY BEAM QUALITY M 2 BEAM WIDTH METHODS SHORT VERSION OVERVIEW

More information

Proceedings of the Third International DERIVE/TI-92 Conference

Proceedings of the Third International DERIVE/TI-92 Conference Using the TI-92 and TI-92 Plus to Explore Derivatives, Riemann Sums, and Differential Equations with Symbolic Manipulation, Interactive Geometry, Scripts, Regression, and Slope Fields Sally Thomas, Orange

More information

A novel 3D torso image reconstruction procedure using a pair of digital stereo back images

A novel 3D torso image reconstruction procedure using a pair of digital stereo back images Modelling in Medicine and Biology VIII 257 A novel 3D torso image reconstruction procedure using a pair of digital stereo back images A. Kumar & N. Durdle Department of Electrical & Computer Engineering,

More information

Visual Physics - Introductory Lab Lab 0

Visual Physics - Introductory Lab Lab 0 Your Introductory Lab will guide you through the steps necessary to utilize state-of-the-art technology to acquire and graph data of mechanics experiments. Throughout Visual Physics, you will be using

More information

Introduction to Image Processing and Analysis. Applications Scientist Nanotechnology Measurements Division Materials Science Solutions Unit

Introduction to Image Processing and Analysis. Applications Scientist Nanotechnology Measurements Division Materials Science Solutions Unit Introduction to Image Processing and Analysis Gilbert Min Ph D Gilbert Min, Ph.D. Applications Scientist Nanotechnology Measurements Division Materials Science Solutions Unit Working with SPM Image Files

More information

inview 360 Fusion Calibration Guide Safe Fleet September 2018 All rights reserved Document #: XE-SNB1-CAL-PM-R0A

inview 360 Fusion Calibration Guide Safe Fleet September 2018 All rights reserved Document #: XE-SNB1-CAL-PM-R0A inview 360 Fusion Calibration Guide CONTENTS Table of Contents Introduction About the AVM............................3 Preparation Calibration Kit............................5 Recommended Tools.......................5

More information

Computer Vision, Laboratory session 1

Computer Vision, Laboratory session 1 Centre for Mathematical Sciences, january 2007 Computer Vision, Laboratory session 1 Overview In this laboratory session you are going to use matlab to look at images, study projective geometry representations

More information

Skew Detection and Correction of Document Image using Hough Transform Method

Skew Detection and Correction of Document Image using Hough Transform Method Skew Detection and Correction of Document Image using Hough Transform Method [1] Neerugatti Varipally Vishwanath, [2] Dr.T. Pearson, [3] K.Chaitanya, [4] MG JaswanthSagar, [5] M.Rupesh [1] Asst.Professor,

More information

Efficient SLAM Scheme Based ICP Matching Algorithm Using Image and Laser Scan Information

Efficient SLAM Scheme Based ICP Matching Algorithm Using Image and Laser Scan Information Proceedings of the World Congress on Electrical Engineering and Computer Systems and Science (EECSS 2015) Barcelona, Spain July 13-14, 2015 Paper No. 335 Efficient SLAM Scheme Based ICP Matching Algorithm

More information

Single-view 3D Reconstruction

Single-view 3D Reconstruction Single-view 3D Reconstruction 10/12/17 Computational Photography Derek Hoiem, University of Illinois Some slides from Alyosha Efros, Steve Seitz Notes about Project 4 (Image-based Lighting) You can work

More information

Scanner Parameter Estimation Using Bilevel Scans of Star Charts

Scanner Parameter Estimation Using Bilevel Scans of Star Charts ICDAR, Seattle WA September Scanner Parameter Estimation Using Bilevel Scans of Star Charts Elisa H. Barney Smith Electrical and Computer Engineering Department Boise State University, Boise, Idaho 8375

More information

A Software Tool for Measurement of the Modulation Transfer Function

A Software Tool for Measurement of the Modulation Transfer Function A Software Tool for Measurement of the Modulation Transfer Function Yen-Hong Kao a, Michael Albert a, Ann-Katherine Carton a, Hilde Bosmans b, Andrew D. A. Maidment a a Department of Radiology, University

More information

Computer Graphics 7: Viewing in 3-D

Computer Graphics 7: Viewing in 3-D Computer Graphics 7: Viewing in 3-D In today s lecture we are going to have a look at: Transformations in 3-D How do transformations in 3-D work? Contents 3-D homogeneous coordinates and matrix based transformations

More information

Gregory Walsh, Ph.D. San Ramon, CA January 25, 2011

Gregory Walsh, Ph.D. San Ramon, CA January 25, 2011 Leica ScanStation:: Calibration and QA Gregory Walsh, Ph.D. San Ramon, CA January 25, 2011 1. Summary Leica Geosystems, in creating the Leica Scanstation family of products, has designed and conducted

More information

Edge and local feature detection - 2. Importance of edge detection in computer vision

Edge and local feature detection - 2. Importance of edge detection in computer vision Edge and local feature detection Gradient based edge detection Edge detection by function fitting Second derivative edge detectors Edge linking and the construction of the chain graph Edge and local feature

More information

Scene Modeling for a Single View

Scene Modeling for a Single View Scene Modeling for a Single View René MAGRITTE Portrait d'edward James with a lot of slides stolen from Steve Seitz and David Brogan, Breaking out of 2D now we are ready to break out of 2D And enter the

More information

Scanning Topography. MountainsMap. Visualize Analyze Report. Surface metrology software for 3D profilometers

Scanning Topography. MountainsMap. Visualize Analyze Report. Surface metrology software for 3D profilometers Visualize Analyze Report MountainsMap Scanning Topography Surface metrology software for 3D profilometers Real time 3D visualization and state of the art analysis MountainsMap Scanning Topography software

More information

m=[a,b,c,d] T together with the a posteriori covariance

m=[a,b,c,d] T together with the a posteriori covariance zimuthal VO analysis: stabilizing the model parameters Chris Davison*, ndrew Ratcliffe, Sergio Grion (CGGVeritas), Rodney Johnston, Carlos Duque, Musa Maharramov (BP). solved using linear least squares

More information

2D Fan Beam Reconstruction 3D Cone Beam Reconstruction

2D Fan Beam Reconstruction 3D Cone Beam Reconstruction 2D Fan Beam Reconstruction 3D Cone Beam Reconstruction Mario Koerner March 17, 2006 1 2D Fan Beam Reconstruction Two-dimensional objects can be reconstructed from projections that were acquired using parallel

More information

1/12/2009. Image Elements (Pixels) Image Elements (Pixels) Digital Image. Digital Image =...

1/12/2009. Image Elements (Pixels) Image Elements (Pixels) Digital Image. Digital Image =... PAM3012 Digital Image Processing for Radiographers Image Sampling & Quantization In this lecture Definitions of Spatial l & Gray-level l resolution Perceived Image Quality & Resolution Aliasing & Moire

More information

5. Feature Extraction from Images

5. Feature Extraction from Images 5. Feature Extraction from Images Aim of this Chapter: Learn the Basic Feature Extraction Methods for Images Main features: Color Texture Edges Wie funktioniert ein Mustererkennungssystem Test Data x i

More information

Prentice Hall. Learning Media Design with Adobe CS4 (Skintik) Alabama - Course of Study - Interactive Multimedia Design

Prentice Hall. Learning Media Design with Adobe CS4 (Skintik) Alabama - Course of Study - Interactive Multimedia Design Prentice Hall Learning Media Design with Adobe CS4 C O R R E L A T E D T O Learning Media Design with Adobe CS4 Students will: Multimedia Components 1. Compare aspects of multimedia. Presentation Desktop

More information

Computer Vision, Laboratory session 1

Computer Vision, Laboratory session 1 Centre for Mathematical Sciences, january 200 Computer Vision, Laboratory session Overview In this laboratory session you are going to use matlab to look at images, study the representations of points,

More information

EE795: Computer Vision and Intelligent Systems

EE795: Computer Vision and Intelligent Systems EE795: Computer Vision and Intelligent Systems Spring 2012 TTh 17:30-18:45 WRI C225 Lecture 02 130124 http://www.ee.unlv.edu/~b1morris/ecg795/ 2 Outline Basics Image Formation Image Processing 3 Intelligent

More information