Non-Uniformity Analysis for a Spatial Light Modulator

Size: px
Start display at page:

Download "Non-Uniformity Analysis for a Spatial Light Modulator"

Transcription

1 Non-Uniformity Analysis for a Spatial Light Modulator February 25, Introduction and Purpose There is an inherent reflectivity non-uniformity in spatial light modulators, hereafter referred to as SLM, that renders them unusable in certain printing applications. These non-uniformities can be caused by the manufacturing process or by stresses introduced by the physical mounting arrangement. Two of these artifacts, low frequency and high frequency non-uniformity, need to be qualified as to their degree. Above some pre-determined limit, the SLM needs to be rejected for printing applications. Of course, there is the possibility of digital correction of the image non-uniformity, but this comes at a cost in terms of additional processing overhead as well as quantization artifacts if the correction required is excessive. Figure 1 shows a typical uncorrected image displaying both low frequency and high frequency artifacts. The purpose of this project is to produce a QC / QA tool that could be used by the manufacturer of the SLM, to verify the acceptability of the device for an application prior to its being built into an apparatus. The evaluation of monochrome images in each of red, green, and blue is required as the non-uniformity image is wavelength dependent. The low frequency non-uniformity is characterized by slowly varying reflectance over a large SLM area, whereas the high frequency non-uniformity can be seen by looking closely at a small area and noting the characteristic brush-mark appearance which is an artifact of the rubbing process used during manufacture. Figure 2 shows the low frequency content of the same image from Figure 1, whereas, Figure 3 shows the high frequency content. Ideally, both of these images would be perfectly uniform. 1

2 Figure 1: Uncorrected Image 2

3 Figure 2: Low Frequency Image 3

4 Figure 3: High Frequency Image 4

5 By low pass filtering the original image, then only the low frequency non-uniformities are seen and can be quantified. By high pass filtering, only the high frequency non-uniformity remains and can be characterized. 2. Approach The approach to this effort was driven by several factors. Primarily, there was a requirement to produce a GUI application that used the IDL programming environment. Secondary was to make the application actually useful. This project succeeded at both. Due to the time constraints, as well as the uncertainty of the actual requirements for the application, the approach was to lay the foundation for an extensible tool. Initially, this tool would have minimal functionality, but would allow an easy way to add or modify testing as the requirements were settled down. Consideration was given to the use of the application. The application should be simple to use, provide a repeatable procedure, and remove the subjectivity out of making a pass/fail decision. In addition, a few additional features would be added to allow a more detailed look at the actual data that drove the decision. The reflectivity images used in making the decision could be viewed during the testing, and the data derived from processing these images, can be viewed and stored for post-processing if desired. 3. High Level Requirements The user first selects from the Image menu, either an image to open for analysis, or requests to acquire an image from a camera/scanner. There is also an option to exit the application from this menu. If the open image option is selected, the user is prompted for the image to be opened. Only.tif images are allowed. Once the image is opened, some basic image information is displayed as text to the user: filename, number of rows, number of columns, mean pixel value, standard deviation, minimum pixel value, and maximum pixel value. Once opened, an option to allow the user to view the image is provided. This, along with the afore mentioned text information, will provide a way or the user to verify that the 5

6 proper image is being analyzed. After an image is opened, and, optionally displayed, the next step would be to perform low frequency and/or high frequency testing. If acquire new image option is selected, the user is prompted to ensure that the input acquistion device is ready, and to provide a filename to store the image as. Then the user initiates the scan. The user will also be provided with a data menu which allows either saving or viewing of analysis data. In the case of saving, the user is prompted to enter a filename to save the analysis data as. For viewing, the user is prompted to select an analysis data file to view. There will also be a help facility provided. The operation of the Analyzer application will be provided to aid the user in proper use. An about dialog box will provide the user with data about the current version of the Analyzer application. Once an image has been opened, low and/or high frequency testing can commence. For low frequency testing, the user must first low frequency filter the image. This removes the high spatial frequency structure in the image that is not important for the low frequency testing. The user can select from various low frequency filters, as well as select the kernel size to be used. Additional filters can easily be added in the future. Once a low frequency filter type and kernel size have been selected, the user commands the original image to be filtered and, optionally, the low frequency image can be viewed. Along with the low frequency filtered image, the low frequency filtering operation also produces similar statistics as were computed for the original image. These new computed statistics will then be used in the low frequency evaluation of the image. For low frequency image evaluation, it has been determined that two types of image artifacts are important to test for in printing applications: non-uniformity and gradient. Non-uniformity is tested by comparing the global low frequency image statistics against pre-defined limits. For gradient testing, moderately steep edges over large image areas are important and must also be compared against pre-defined limits. For both of these low frequency tests, the used can select various acceptance limits prior to performing the test. The application will then produce a text message indicating pass or fail of the low frequency test. 6

7 For high frequency image evaluation, a similar user interaction is required. In this case, only the high frequency non-uniformity test is required. After performing the tests, against the selected limits, the user can save the analysis data and also display the results if desired. If saved, the analysis data is stored as a formatted text file that can be opened with other applications (e.g. Microsoft Excel). For invalid operations by the user, the application should warn or coerce the user for the proper action. 4. Design and GUI Layout Figure 3 shows the design solution for the IDL GUI which meets the requirements for the project. It was attempted to make the GUI flexible enough to allow an experienced operator to have access to more detailed data than the standard operator would. This is seen in some of the controls to display images and view analysis data. It would also be a simple matter to initiate a more automated process, where as soon as an image was opened, or a new image acquired, the entire ensemble of steps would be executed and the results written to a file. This will be considered for a final production version of the application. The actual IDL design was built upon familiar constructs due to the time constraints. Pointers were used to reference the various images that were needed between the various event handlers. Using separate functions for the various tasks would be a better architecture for the next version as well. This would allow an even easier method to maintain and add new functionality. A global data structure was used in the top level base to hold all references to widgets, and additional data needed by the various event handlers. This technique was used in the past and performed well here. 5. Testing 7

8 Figure 4: Main Application GUI 8

9 The application was tested for proper operation. All controls were tested to ensure proper operation and that warning messages were presented to the user if improper steps were commanded. In addition, a sample SLM reflectance image acquired using a high resolution monochrome digital camera was tested (uncorrected.tif). Opening, viewing, computation of statistics and low pass filtering was performed and worked as expected. This image was evaluated using Adobe Photoshop and the results agreed with those attained with the Analyzer application. It appeared that the pointers used to reference the original and filtered images were not being lost, so that there were no apparent memory leaks. The data files produced by the application were opened in Unix and the correct data was observed to be stored. Files were tested to ensure that they had been properly closed after access. The formatted text files produced need verification that they are properly formatted for use with Microsoft Excel. This needs to be tested, since the long-term intent will be to further analyze and document the current and archived test data using a tool such at this. 6. Results and Conclusions The scope of this project was kept very well defined and limited based upon the requirements and the time constraints. Time constraints did not allow the high frequency filtering to be operational at the time of this writing, but will be easily implemented using the low frequency filtering source code as a model. In addition, the actual tests on the filtered data cannot be d until algorithms have been developed. Since the algorithm development is beyond the scope of the course work requirements, and given the time constraints, it is not currently operational. Following is a list of the status of the major functions of the application: FUNCTION Overall GUI Image open STATUS 9

10 Image acquire Application exit Application help Application about Display Original Image Save analysis data View analysis data Low Frequency Filter Low Frequency Test High Frequency Filter High Frequency Test not operational partial not operational not operational not operational Changes to the requirements may also occur to this application as actual users are asked to evaluate it. At this stage the Analyzer application is an engineering model. 10

Auto-Teach. Vision Inspection that Learns What a Good Part Is

Auto-Teach. Vision Inspection that Learns What a Good Part Is Auto-Teach Vision Inspection that Learns What a Good Part Is Jeff Johnson National Product Sales Director- Machine Vision Keyence Corporation of America Keyence Corporation Global Headquarters: Osaka Japan

More information

Getting Started After Effects Files More Information. Global Modifications. Network IDs. Strand Opens. Bumpers. Promo End Pages.

Getting Started After Effects Files More Information. Global Modifications. Network IDs. Strand Opens. Bumpers. Promo End Pages. TABLE of CONTENTS 1 Getting Started After Effects Files More Information Introduction 2 Global Modifications 9 Iconic Imagery 21 Requirements 3 Network IDs 10 Summary 22 Toolkit Specifications 4 Strand

More information

Scope: All CT staff technologist

Scope: All CT staff technologist APPROVED BY: Radiology Technical Director Page 1 of 6 Purpose: The QC program assesses relative changes in system performance as determined by the technologist, service engineer, qualified medical physicist,

More information

Acquisition Control System Design Requirement Document

Acquisition Control System Design Requirement Document Project Documentation SPEC-0188 Rev A Acquisition Control System Design Requirement Document Bret Goodrich, David Morris HLSC Group November 2018 Released By: Name M. Warner Project Manager Date 28-Nov-2018

More information

Case Study: Can Video Quality Testing be Scripted?

Case Study: Can Video Quality Testing be Scripted? 1566 La Pradera Dr Campbell, CA 95008 www.videoclarity.com 408-379-6952 Case Study: Can Video Quality Testing be Scripted? Bill Reckwerdt, CTO Video Clarity, Inc. Version 1.0 A Video Clarity Case Study

More information

2 Select the magic wand tool (M) in the toolbox. 3 Click the sky to select that area. Add to the. 4 Click the Quick Mask Mode button(q) in

2 Select the magic wand tool (M) in the toolbox. 3 Click the sky to select that area. Add to the. 4 Click the Quick Mask Mode button(q) in ADOBE PHOTOSHOP 4.0 FUNDAMENTALS A mask works like a rubylith or frisket, covering part of the image and selecting the rest. In Adobe Photoshop, you can create masks using the selection tools or by painting

More information

The SmoothPicture Algorithm: An Overview

The SmoothPicture Algorithm: An Overview The SmoothPicture Algorithm: An Overview David C. Hutchison Texas Instruments DLP TV The SmoothPicture Algorithm: An Overview David C. Hutchison, Texas Instruments, DLP TV Abstract This white paper will

More information

Table of content. Table of content Introduction Concepts Hardware setup...4

Table of content. Table of content Introduction Concepts Hardware setup...4 Table of content Table of content... 1 Introduction... 2 1. Concepts...3 2. Hardware setup...4 2.1. ArtNet, Nodes and Switches...4 2.2. e:cue butlers...5 2.3. Computer...5 3. Installation...6 4. LED Mapper

More information

INTERLACE CHARACTER EDITOR (ICE) Programmed by Bobby Clark. Version 1.0 for the ABBUC Software Contest 2011

INTERLACE CHARACTER EDITOR (ICE) Programmed by Bobby Clark. Version 1.0 for the ABBUC Software Contest 2011 INTERLACE CHARACTER EDITOR (ICE) Programmed by Bobby Clark Version 1.0 for the ABBUC Software Contest 2011 INTRODUCTION Interlace Character Editor (ICE) is a collection of three font editors written in

More information

Image Contrast Enhancement (ICE) The Defining Feature. Author: J Schell, Product Manager DRS Technologies, Network and Imaging Systems Group

Image Contrast Enhancement (ICE) The Defining Feature. Author: J Schell, Product Manager DRS Technologies, Network and Imaging Systems Group WHITE PAPER Image Contrast Enhancement (ICE) The Defining Feature Author: J Schell, Product Manager DRS Technologies, Network and Imaging Systems Group Image Contrast Enhancement (ICE): The Defining Feature

More information

PYROPTIX TM IMAGE PROCESSING SOFTWARE

PYROPTIX TM IMAGE PROCESSING SOFTWARE Innovative Technologies for Maximum Efficiency PYROPTIX TM IMAGE PROCESSING SOFTWARE V1.0 SOFTWARE GUIDE 2017 Enertechnix Inc. PyrOptix Image Processing Software v1.0 Section Index 1. Software Overview...

More information

White Paper. Uniform Luminance Technology. What s inside? What is non-uniformity and noise in LCDs? Why is it a problem? How is it solved?

White Paper. Uniform Luminance Technology. What s inside? What is non-uniformity and noise in LCDs? Why is it a problem? How is it solved? White Paper Uniform Luminance Technology What s inside? What is non-uniformity and noise in LCDs? Why is it a problem? How is it solved? Tom Kimpe Manager Technology & Innovation Group Barco Medical Imaging

More information

Quadro Plex D2. Mosaic Mode for windows XP Reference Guide

Quadro Plex D2. Mosaic Mode for windows XP Reference Guide Quadro Plex D2 Mosaic Mode for windows XP Reference Guide PNY Technologies, Inc. 299 Webro Rd. Parsippany, NJ 07054-0218 Tel: 408.567.5500 Fax: 408.855.0680 Features and specifications subject to change

More information

About Final Cut Pro Includes installation instructions and information on new features

About Final Cut Pro Includes installation instructions and information on new features apple About Final Cut Pro 1.2.5 Includes installation instructions and information on new features This document includes installation instructions and describes features and enhancements of Final Cut

More information

Remote Director and NEC LCD3090WQXi on GRACoL Coated #1

Remote Director and NEC LCD3090WQXi on GRACoL Coated #1 Off-Press Proof Application Data Sheet Remote Director and NEC LCD3090WQXi on GRACoL Coated #1 The IDEAlliance Print Properties Working Group has established a certification process for off-press proofs

More information

CytoFLEX Flow Cytometer Quick Start Guide

CytoFLEX Flow Cytometer Quick Start Guide Sheath Waste CLASS 1 LASER PRODUCT COMPLIES WITH 21 CFR 1040.10 AND 1040.11 EXCEPT FOR DEVIATIONS PURSUANT TO LASER NOTICE NO. 50 DATED JUNE 24, 2007 MANUFACTURED Sheath B49008AC February 2015 CytoFLEX

More information

PITZ Introduction to the Video System

PITZ Introduction to the Video System PITZ Introduction to the Video System Stefan Weiße DESY Zeuthen June 10, 2003 Agenda 1. Introduction to PITZ 2. Why a video system? 3. Schematic structure 4. Client/Server architecture 5. Hardware 6. Software

More information

Automatic Projector Tilt Compensation System

Automatic Projector Tilt Compensation System Automatic Projector Tilt Compensation System Ganesh Ajjanagadde James Thomas Shantanu Jain October 30, 2014 1 Introduction Due to the advances in semiconductor technology, today s display projectors can

More information

AutoBlend Screening in ScreenManager and Imaging Engine Release Notes

AutoBlend Screening in ScreenManager and Imaging Engine Release Notes AutoBlend Screening in ScreenManager and Imaging Engine Release Notes Peter Morisse v. 1.0, 27-jan-2015 v. 1.1, 14-apr-2015 1 Contents 1 CONTENTS... 1 2 REQUIREMENTS... 1 3 DESCRIPTION... 2 3.1 AUTOBLEND

More information

CORIOmax Resolution Editor Programming Guide 2015/03/04

CORIOmax Resolution Editor Programming Guide 2015/03/04 CORIOmax Resolution Editor Programming Guide 2015/03/04 Document Information General Information: Title CORIOmax Resolution Editor Programming Guide Author Version 2.1 Brief Version Control: Version Amendments

More information

AVIA Professional A multi-disc calibration, set-up and test suite Developed by: Ovation Multimedia, Inc. July, 2003

AVIA Professional A multi-disc calibration, set-up and test suite Developed by: Ovation Multimedia, Inc. July, 2003 AVIA Professional A multi-disc calibration, set-up and test suite Developed by: Ovation Multimedia, Inc. July, 2003 AVIA Professional General Information What is AVIA Professional? AVIA Professional (AVIA

More information

Speech and Speaker Recognition for the Command of an Industrial Robot

Speech and Speaker Recognition for the Command of an Industrial Robot Speech and Speaker Recognition for the Command of an Industrial Robot CLAUDIA MOISA*, HELGA SILAGHI*, ANDREI SILAGHI** *Dept. of Electric Drives and Automation University of Oradea University Street, nr.

More information

-Technical Specifications-

-Technical Specifications- Annex I to Contract 108733 NL-Petten: the delivery, installation, warranty and maintenance of one (1) X-ray computed tomography system at the JRC-IET -Technical Specifications- INTRODUCTION In the 7th

More information

Streamcrest Motion1 Test Sequence and Utilities. A. Using the Motion1 Sequence. Robert Bleidt - June 7,2002

Streamcrest Motion1 Test Sequence and Utilities. A. Using the Motion1 Sequence. Robert Bleidt - June 7,2002 Streamcrest Motion1 Test Sequence and Utilities Robert Bleidt - June 7,2002 A. Using the Motion1 Sequence Streamcrest s Motion1 Test Sequence Generator generates the test pattern shown in the still below

More information

Analyzing and Saving a Signal

Analyzing and Saving a Signal Analyzing and Saving a Signal Approximate Time You can complete this exercise in approximately 45 minutes. Background LabVIEW includes a set of Express VIs that help you analyze signals. This chapter teaches

More information

Release Notes for LAS AF version 1.8.0

Release Notes for LAS AF version 1.8.0 October 1 st, 2007 Release Notes for LAS AF version 1.8.0 1. General Information A new structure of the online help is being implemented. The focus is on the description of the dialogs of the LAS AF. Configuration

More information

ECE Real Time Embedded Systems Final Project. Speeding Detecting System

ECE Real Time Embedded Systems Final Project. Speeding Detecting System ECE 7220 Real Time Embedded Systems Final Project Speeding Detecting System By Hancheng Wu Abstract Speeding is one of the most common reasons that lead to traffic accidents. This project implements a

More information

Digital Video Telemetry System

Digital Video Telemetry System Digital Video Telemetry System Item Type text; Proceedings Authors Thom, Gary A.; Snyder, Edwin Publisher International Foundation for Telemetering Journal International Telemetering Conference Proceedings

More information

ivw-ud322 / ivw-ud322f

ivw-ud322 / ivw-ud322f ivw-ud322 / ivw-ud322f Video Wall Controller Supports 2 x 2, 2 x 1, 3 x 1, 1 x 3, 4 x 1 & 1 x 4 Video Wall Array User Manual Rev. 1.01 i Notice Thank you for choosing inds products! This user manual provides

More information

Abbreviated Information for Authors

Abbreviated Information for Authors Abbreviated Information for Authors Introduction You have recently been sent an invitation to submit a manuscript to ScholarOne Manuscripts (S1M). The primary purpose for this submission to start a process

More information

AUDIOVISUAL COMMUNICATION

AUDIOVISUAL COMMUNICATION AUDIOVISUAL COMMUNICATION Laboratory Session: Recommendation ITU-T H.261 Fernando Pereira The objective of this lab session about Recommendation ITU-T H.261 is to get the students familiar with many aspects

More information

Physics 277:Special Topics Medieval Arms and Armor. Fall Dr. Martin John Madsen Department of Physics Wabash College

Physics 277:Special Topics Medieval Arms and Armor. Fall Dr. Martin John Madsen Department of Physics Wabash College Physics 277:Special Topics Medieval Arms and Armor Fall 2011 Dr. Martin John Madsen Department of Physics Wabash College Welcome to PHY 277! I welcome you to this special topics physics course: Medieval

More information

Evaluating Oscilloscope Mask Testing for Six Sigma Quality Standards

Evaluating Oscilloscope Mask Testing for Six Sigma Quality Standards Evaluating Oscilloscope Mask Testing for Six Sigma Quality Standards Application Note Introduction Engineers use oscilloscopes to measure and evaluate a variety of signals from a range of sources. Oscilloscopes

More information

Configuring and Troubleshooting Set-Top Boxes

Configuring and Troubleshooting Set-Top Boxes Diagnose RF Tuner Issues, page 1 Protect End-User Privacy, page 4 Apply Services to Device, page 5 View Video Recordings, page 6 View VOD Programs, page 6 View PDL Programs, page 7 View Hard Disk Information,

More information

Introduction to Data Conversion and Processing

Introduction to Data Conversion and Processing Introduction to Data Conversion and Processing The proliferation of digital computing and signal processing in electronic systems is often described as "the world is becoming more digital every day." Compared

More information

MTS/T-BERD 8000 Platform Optical Spectrum Analyzer Modules

MTS/T-BERD 8000 Platform Optical Spectrum Analyzer Modules COMMUNICATIONS TEST & MEASUREMENT SOLUTIONS MTS/T-BERD 8000 Platform Optical Spectrum Analyzer Modules MTS/T-BERD platform Applications Provisioning and maintenance of ROADM networks Commissioning of DWDM

More information

PRELIMINARY. QuickLogic s Visual Enhancement Engine (VEE) and Display Power Optimizer (DPO) Android Hardware and Software Integration Guide

PRELIMINARY. QuickLogic s Visual Enhancement Engine (VEE) and Display Power Optimizer (DPO) Android Hardware and Software Integration Guide QuickLogic s Visual Enhancement Engine (VEE) and Display Power Optimizer (DPO) Android Hardware and Software Integration Guide QuickLogic White Paper Introduction A display looks best when viewed in a

More information

ELECTRICAL SAFETY INSPECTION REPORT. MTM Garments Ltd.

ELECTRICAL SAFETY INSPECTION REPORT. MTM Garments Ltd. ELECTRICAL SAFETY INSPECTION REPORT MTM Garments Ltd. 15934/16004, Chanpara, Medical Road, Uttarkhan, Dhaka, Bangladesh. Factory List MTM Garments Ltd. Inspected by: Hemlal Dahal Report Generated by: Hemlal

More information

Samsara VS2 Series Vision System

Samsara VS2 Series Vision System Samsara VS2 Series Vision System CLOUD-MANAGED VS2 VISION SYSTEM DATASHEET Samsara s VS2-series machine vision system combines next-generation processing power with builtin cloud storage and reporting

More information

V9A01 Solution Specification V0.1

V9A01 Solution Specification V0.1 V9A01 Solution Specification V0.1 CONTENTS V9A01 Solution Specification Section 1 Document Descriptions... 4 1.1 Version Descriptions... 4 1.2 Nomenclature of this Document... 4 Section 2 Solution Overview...

More information

Mechanical aspects, FEA validation and geometry optimization

Mechanical aspects, FEA validation and geometry optimization RF Fingers for the new ESRF-EBS EBS storage ring The ESRF-EBS storage ring features new vacuum chamber profiles with reduced aperture. RF fingers are a key component to ensure good vacuum conditions and

More information

The Extron MGP 464 is a powerful, highly effective tool for advanced A/V communications and presentations. It has the

The Extron MGP 464 is a powerful, highly effective tool for advanced A/V communications and presentations. It has the MGP 464: How to Get the Most from the MGP 464 for Successful Presentations The Extron MGP 464 is a powerful, highly effective tool for advanced A/V communications and presentations. It has the ability

More information

Logisim: A graphical system for logic circuit design and simulation

Logisim: A graphical system for logic circuit design and simulation Logisim: A graphical system for logic circuit design and simulation October 21, 2001 Abstract Logisim facilitates the practice of designing logic circuits in introductory courses addressing computer architecture.

More information

Data flow architecture for high-speed optical processors

Data flow architecture for high-speed optical processors Data flow architecture for high-speed optical processors Kipp A. Bauchert and Steven A. Serati Boulder Nonlinear Systems, Inc., Boulder CO 80301 1. Abstract For optical processor applications outside of

More information

h t t p : / / w w w. v i d e o e s s e n t i a l s. c o m E - M a i l : j o e k a n a t t. n e t DVE D-Theater Q & A

h t t p : / / w w w. v i d e o e s s e n t i a l s. c o m E - M a i l : j o e k a n a t t. n e t DVE D-Theater Q & A J O E K A N E P R O D U C T I O N S W e b : h t t p : / / w w w. v i d e o e s s e n t i a l s. c o m E - M a i l : j o e k a n e @ a t t. n e t DVE D-Theater Q & A 15 June 2003 Will the D-Theater tapes

More information

Implementation of A Low Cost Motion Detection System Based On Embedded Linux

Implementation of A Low Cost Motion Detection System Based On Embedded Linux Implementation of A Low Cost Motion Detection System Based On Embedded Linux Hareen Muchala S. Pothalaiah Dr. B. Brahmareddy Ph.d. M.Tech (ECE) Assistant Professor Head of the Dept.Ece. Embedded systems

More information

POL-200 Semiautomatic Polarimeter. Instruction Manual BANTE INSTRUMENTS CO., LTD

POL-200 Semiautomatic Polarimeter. Instruction Manual BANTE INSTRUMENTS CO., LTD POL-200 Semiautomatic Polarimeter Instruction Manual BANTE INSTRUMENTS CO., LTD POL-200 Semiautomatic Polarimeter 1 Introduction Thank you for selecting the POL-200 semiautomatic polarimeter. This manual

More information

ViewCommander- NVR Version 3. User s Guide

ViewCommander- NVR Version 3. User s Guide ViewCommander- NVR Version 3 User s Guide The information in this manual is subject to change without notice. Internet Video & Imaging, Inc. assumes no responsibility or liability for any errors, inaccuracies,

More information

Sharif University of Technology. SoC: Introduction

Sharif University of Technology. SoC: Introduction SoC Design Lecture 1: Introduction Shaahin Hessabi Department of Computer Engineering System-on-Chip System: a set of related parts that act as a whole to achieve a given goal. A system is a set of interacting

More information

DCI Memorandum Regarding Direct View Displays

DCI Memorandum Regarding Direct View Displays 1. Introduction DCI Memorandum Regarding Direct View Displays Approved 27 June 2018 Digital Cinema Initiatives, LLC, Member Representatives Committee Direct view displays provide the potential for an improved

More information

Quick reference guide

Quick reference guide Quick reference guide Manufactured by: Esaote Europe B.V. Philipsweg 1 6227 AJ Maastricht The Netherlands Tel. +31 (43) 382 4600 Fax +31 (43) 382 4601 Internet: www.esaote.com Email: international.sales@esaote.com

More information

Technical Documentation Blue Only Test Pattern

Technical Documentation Blue Only Test Pattern Technical Documentation Blue Only Test Pattern 1. Index 1. Index... 2 2. Introduction... 3 3. Basics... 4 3.1 SMPTE Color Bar... 4 3.2 ARIB Test Pattern... 4 4. The Blue Only Test Pattern... 5 4.1 Blue

More information

The Measurement Tools and What They Do

The Measurement Tools and What They Do 2 The Measurement Tools The Measurement Tools and What They Do JITTERWIZARD The JitterWizard is a unique capability of the JitterPro package that performs the requisite scope setup chores while simplifying

More information

Lecture 2 Video Formation and Representation

Lecture 2 Video Formation and Representation 2013 Spring Term 1 Lecture 2 Video Formation and Representation Wen-Hsiao Peng ( 彭文孝 ) Multimedia Architecture and Processing Lab (MAPL) Department of Computer Science National Chiao Tung University 1

More information

Precautions and Disclaimers What You Can Do with Geometry Manager Pro Check Your Computer System requirements...

Precautions and Disclaimers What You Can Do with Geometry Manager Pro Check Your Computer System requirements... Operating Instructions Geometric & Setup Management Software Windows Geometry Manager Pro Ver. 4.0 Thank you for purchasing this Panasonic product. Before using this software, please read the instructions

More information

Agilent 87075C Multiport Test Set Product Overview

Agilent 87075C Multiport Test Set Product Overview Agilent 87075C Multiport Test Set Product Overview A complete 75 ohm system for cable TV device manufacturers Now, focus on testing, not reconnecting! For use with the Agilent 8711 C-Series of network

More information

Basic Pattern Recognition with NI Vision

Basic Pattern Recognition with NI Vision Basic Pattern Recognition with NI Vision Author: Bob Sherbert Keywords: National Instruments, vision, LabVIEW, fiducial, pattern recognition This tutorial aims to instruct the reader on the method used

More information

This document is meant purely as a documentation tool and the institutions do not assume any liability for its contents

This document is meant purely as a documentation tool and the institutions do not assume any liability for its contents 2009R0642 EN 12.09.2013 001.001 1 This document is meant purely as a documentation tool and the institutions do not assume any liability for its contents B COMMISSION REGULATION (EC) No 642/2009 of 22

More information

User s Manual. Log Scale (/LG) GX10/GX20/GP10/GP20/GM10 IM 04L51B01-06EN. 3rd Edition

User s Manual. Log Scale (/LG) GX10/GX20/GP10/GP20/GM10 IM 04L51B01-06EN. 3rd Edition User s Manual Model GX10/GX20/GP10/GP20/GM10 Log Scale (/LG) 3rd Edition Introduction Thank you for purchasing the SMARTDAC+ Series GX10/GX20/GP10/GP20/GM10 (hereafter referred to as the recorder, GX,

More information

GEC ITS Teaching and Learning Classroom Hotline Multimedia Classroom

GEC ITS Teaching and Learning Classroom Hotline Multimedia Classroom ITS Teaching and Learning Classroom Hotline Multimedia Classroom GEC 1005 This document is a publication of ITS Teaching and Learning Classroom Hotline at the University of North Carolina. It may be copied

More information

TechNote: MuraTool CA: 1 2/9/00. Figure 1: High contrast fringe ring mura on a microdisplay

TechNote: MuraTool CA: 1 2/9/00. Figure 1: High contrast fringe ring mura on a microdisplay Mura: The Japanese word for blemish has been widely adopted by the display industry to describe almost all irregular luminosity variation defects in liquid crystal displays. Mura defects are caused by

More information

System Quality Indicators

System Quality Indicators Chapter 2 System Quality Indicators The integration of systems on a chip, has led to a revolution in the electronic industry. Large, complex system functions can be integrated in a single IC, paving the

More information

R&S ZNrun Automated Test Software PC-based server platform for automated VNA tests

R&S ZNrun Automated Test Software PC-based server platform for automated VNA tests ZNrun_bro_en_3607-1836-12_v0100.indd 1 Product Brochure 01.00 Test & Measurement R&S ZNrun Automated Test Software PC-based server platform for automated VNA tests 05.03.2015 11:31:43 R&S ZNrun Automated

More information

Computer-Assisted Nutrient Management Tutorials. Printing Maps

Computer-Assisted Nutrient Management Tutorials. Printing Maps Computer-Assisted Nutrient Management Tutorials Printing Maps John A. Lory, Ph.D. University of Missouri Extension LoryJ@Missouri.edu Printing Maps: Getting Started If you are not there, return to Mapping

More information

APPLICATION NOTE AN-B03. Aug 30, Bobcat CAMERA SERIES CREATING LOOK-UP-TABLES

APPLICATION NOTE AN-B03. Aug 30, Bobcat CAMERA SERIES CREATING LOOK-UP-TABLES APPLICATION NOTE AN-B03 Aug 30, 2013 Bobcat CAMERA SERIES CREATING LOOK-UP-TABLES Abstract: This application note describes how to create and use look-uptables. This note applies to both CameraLink and

More information

Win32 and latest version complete with source:

Win32 and latest version complete with source: Rolling Your Own Dithers in Bmp2DHR Download Bmp2DHR at the following links: Win32 and latest version complete with source: http://www.appleoldies.ca/cc65/programs/dhgr/bmp2hr.zip MS-DOS: http://www.appleoldies.ca/cc65/programs/dhgr/bmp2dhrmsdos.zip

More information

HD Flex Patch Panel. ASSEMBLY VIEW (FLEX1UPN** shown) FS128B. CONTENTS: (#) indicates FLEX4UPN** quantity

HD Flex Patch Panel. ASSEMBLY VIEW (FLEX1UPN** shown) FS128B. CONTENTS: (#) indicates FLEX4UPN** quantity HD Flex Patch Panel Part Numbers: FLEX1UPN**, FLEX2UPN**, FLEX4UPN** Panduit Corp. 2018 INSTALLATION INSTRUCTIONS Note: HD Flex Patch Panels are compatible with HD Flex Fiber System Components. HD Flex

More information

APA Research Paper Chapter 2 Supplement

APA Research Paper Chapter 2 Supplement Microsoft Office Word 00 Appendix D APA Research Paper Chapter Supplement Project Research Paper Based on APA Documentation Style As described in Chapter, two popular documentation styles for research

More information

Mixing in the Box A detailed look at some of the myths and legends surrounding Pro Tools' mix bus.

Mixing in the Box A detailed look at some of the myths and legends surrounding Pro Tools' mix bus. From the DigiZine online magazine at www.digidesign.com Tech Talk 4.1.2003 Mixing in the Box A detailed look at some of the myths and legends surrounding Pro Tools' mix bus. By Stan Cotey Introduction

More information

VGA Controller. Leif Andersen, Daniel Blakemore, Jon Parker University of Utah December 19, VGA Controller Components

VGA Controller. Leif Andersen, Daniel Blakemore, Jon Parker University of Utah December 19, VGA Controller Components VGA Controller Leif Andersen, Daniel Blakemore, Jon Parker University of Utah December 19, 2012 Fig. 1. VGA Controller Components 1 VGA Controller Leif Andersen, Daniel Blakemore, Jon Parker University

More information

Uncooled amorphous silicon ¼ VGA IRFPA with 25 µm pixel-pitch for High End applications

Uncooled amorphous silicon ¼ VGA IRFPA with 25 µm pixel-pitch for High End applications Uncooled amorphous silicon ¼ VGA IRFPA with 25 µm pixel-pitch for High End applications A. Crastes, J.L. Tissot, M. Vilain, O. Legras, S. Tinnes, C. Minassian, P. Robert, B. Fieque ULIS - BP27-38113 Veurey

More information

+ Human method is pattern recognition based upon multiple exposure to known samples.

+ Human method is pattern recognition based upon multiple exposure to known samples. Main content + Segmentation + Computer-aided detection + Data compression + Image facilities design + Human method is pattern recognition based upon multiple exposure to known samples. + We build up mental

More information

Installation and Tuning Manual DAC 7000 DAC 2X

Installation and Tuning Manual DAC 7000 DAC 2X Installation and Tuning Manual DAC 7000 DAC 2X DISCLAIMER While every effort has been made to ensure the accuracy of this document, Wayne s, Inc. nor its dealers assumes any responsibility for omissions

More information

CS101 Final term solved paper Question No: 1 ( Marks: 1 ) - Please choose one ---------- was known as mill in Analytical engine. Memory Processor Monitor Mouse Ref: An arithmetical unit (the "mill") would

More information

Overview. Project Shutdown Schedule

Overview. Project Shutdown Schedule Overview This handbook and the accompanying databases were created by the WGBH Media Library and Archives and are offered to the production community to assist you as you move through the different phases

More information

Achieve Accurate Critical Display Performance With Professional and Consumer Level Displays

Achieve Accurate Critical Display Performance With Professional and Consumer Level Displays Achieve Accurate Critical Display Performance With Professional and Consumer Level Displays Display Accuracy to Industry Standards Reference quality monitors are able to very accurately reproduce video,

More information

VLSI Design: 3) Explain the various MOSFET Capacitances & their significance. 4) Draw a CMOS Inverter. Explain its transfer characteristics

VLSI Design: 3) Explain the various MOSFET Capacitances & their significance. 4) Draw a CMOS Inverter. Explain its transfer characteristics 1) Explain why & how a MOSFET works VLSI Design: 2) Draw Vds-Ids curve for a MOSFET. Now, show how this curve changes (a) with increasing Vgs (b) with increasing transistor width (c) considering Channel

More information

Solutions to Embedded System Design Challenges Part II

Solutions to Embedded System Design Challenges Part II Solutions to Embedded System Design Challenges Part II Time-Saving Tips to Improve Productivity In Embedded System Design, Validation and Debug Hi, my name is Mike Juliana. Welcome to today s elearning.

More information

FPA (Focal Plane Array) Characterization set up (CamIRa) Standard Operating Procedure

FPA (Focal Plane Array) Characterization set up (CamIRa) Standard Operating Procedure FPA (Focal Plane Array) Characterization set up (CamIRa) Standard Operating Procedure FACULTY IN-CHARGE Prof. Subhananda Chakrabarti (IITB) SYSTEM OWNER Hemant Ghadi (ghadihemant16@gmail.com) 05 July 2013

More information

Achieve Accurate Color-Critical Performance With Affordable Monitors

Achieve Accurate Color-Critical Performance With Affordable Monitors Achieve Accurate Color-Critical Performance With Affordable Monitors Image Rendering Accuracy to Industry Standards Reference quality monitors are able to very accurately render video, film, and graphics

More information

THE TIMING COUNTER OF THE MEG EXPERIMENT: DESIGN AND COMMISSIONING (OR HOW TO BUILD YOUR OWN HIGH TIMING RESOLUTION DETECTOR )

THE TIMING COUNTER OF THE MEG EXPERIMENT: DESIGN AND COMMISSIONING (OR HOW TO BUILD YOUR OWN HIGH TIMING RESOLUTION DETECTOR ) THE TIMING COUNTER OF THE MEG EXPERIMENT: DESIGN AND COMMISSIONING (OR HOW TO BUILD YOUR OWN HIGH TIMING RESOLUTION DETECTOR ) S. DUSSONI FRONTIER DETECTOR FOR FRONTIER PHYSICS - LA BIODOLA 2009 Fastest

More information

Guidelines for Assuring Softcopy Image Quality

Guidelines for Assuring Softcopy Image Quality Guidelines for Assuring Softcopy Image Quality What s inside? Quality Control Guidelines Softcopy QA testing and frequencies Danny Deroo Product and R&D Manager QA Products ABSTRACT To ensure diagnostic

More information

Data Collection Using APEX3. March 30, Chemical Crystallography Laboratory

Data Collection Using APEX3. March 30, Chemical Crystallography Laboratory Data Collection Using APEX3 Page 1 of 10 Data Collection Using APEX3 March 30, 2017 Chemical Crystallography Laboratory Author: Douglas R. Powell Data Collection Using APEX3 Page 2 of 10 Distribution Douglas

More information

Using SignalTap II in the Quartus II Software

Using SignalTap II in the Quartus II Software White Paper Using SignalTap II in the Quartus II Software Introduction The SignalTap II embedded logic analyzer, available exclusively in the Altera Quartus II software version 2.1, helps reduce verification

More information

Clock Jitter Cancelation in Coherent Data Converter Testing

Clock Jitter Cancelation in Coherent Data Converter Testing Clock Jitter Cancelation in Coherent Data Converter Testing Kars Schaapman, Applicos Introduction The constantly increasing sample rate and resolution of modern data converters makes the test and characterization

More information

MTS/T-BERD 8000 Platform

MTS/T-BERD 8000 Platform Key Features New optical design for field applications 50% reduction in size and weight for true OSNR measurements in ROADM networks Full spectral range of 1250 to 1650 nm for DWDM and CWDM testing High-resolution

More information

Be sure to check the camera is properly functioning, is properly positioned and securely mounted, every time you operate your vehicle.

Be sure to check the camera is properly functioning, is properly positioned and securely mounted, every time you operate your vehicle. Please read all of the installation instructions carefully before installing the product. Improper installation will void manufacturer s warranty. The installation instructions do not apply to all types

More information

Introduction. Edge Enhancement (SEE( Advantages of Scalable SEE) Lijun Yin. Scalable Enhancement and Optimization. Case Study:

Introduction. Edge Enhancement (SEE( Advantages of Scalable SEE) Lijun Yin. Scalable Enhancement and Optimization. Case Study: Case Study: Scalable Edge Enhancement Introduction Edge enhancement is a post processing for displaying radiologic images on the monitor to achieve as good visual quality as the film printing does. Edges

More information

User s Manual. Log Scale (/LG) GX10/GX20/GP10/GP20/GM10 IM 04L51B01-06EN. 2nd Edition

User s Manual. Log Scale (/LG) GX10/GX20/GP10/GP20/GM10 IM 04L51B01-06EN. 2nd Edition User s Manual Model GX10/GX20/GP10/GP20/GM10 Log Scale (/LG) User s Manual 2nd Edition Introduction Notes Trademarks Thank you for purchasing the SMARTDAC+ Series GX10/GX20/GP10/GP20/GM10 (hereafter referred

More information

EVOLVING DESIGN LAYOUT CASES TO SATISFY FENG SHUI CONSTRAINTS

EVOLVING DESIGN LAYOUT CASES TO SATISFY FENG SHUI CONSTRAINTS EVOLVING DESIGN LAYOUT CASES TO SATISFY FENG SHUI CONSTRAINTS ANDRÉS GÓMEZ DE SILVA GARZA AND MARY LOU MAHER Key Centre of Design Computing Department of Architectural and Design Science University of

More information

Development of Simple-Matrix LCD Module for Motion Picture

Development of Simple-Matrix LCD Module for Motion Picture Development of Simple-Matrix LCD Module for Motion Picture Kunihiko Yamamoto* Shinya Takahashi* Kouki Taniguchi* * A1203 Project Team Abstract A simple-matrix LCD module (12.1-in. SVGA) has been developed

More information

Yellow Frog. Manual Version 1.1

Yellow Frog. Manual Version 1.1 Yellow Frog Manual Version 1.1 1 YellowFrog Contents PC Requirements...... 2 YellowFrog Power Meter Measurement.... 3 YellowFrog PC Software..... 3 Main Screen....... 4 Input Overload....... 5 Battery

More information

EZCOM-1. PLC - to - AMS MESSAGE DISPLAY INTERFACE INSTALLATION AND OPERATING INSTRUCTIONS. Rev March, 2001

EZCOM-1. PLC - to - AMS MESSAGE DISPLAY INTERFACE INSTALLATION AND OPERATING INSTRUCTIONS. Rev March, 2001 EZCOM-1 PLC - to - AMS MESSAGE DISPLAY INTERFACE INSTALLATION AND OPERATING INSTRUCTIONS Rev 1.3 - March, 2001 CONTENTS Page INTRODUCTION 1 SPECIFICATIONS 1 LIST OF SUPPLIED ITEMS 1 INSTALLATION & TESTING

More information

Audio and Video Localization

Audio and Video Localization Audio and Video Localization Whether you are considering localizing an elearning course, a video game, or a training program, the audio and video components are going to be central to the project. The

More information

For the SIA. Applications of Propagation Delay & Skew tool. Introduction. Theory of Operation. Propagation Delay & Skew Tool

For the SIA. Applications of Propagation Delay & Skew tool. Introduction. Theory of Operation. Propagation Delay & Skew Tool For the SIA Applications of Propagation Delay & Skew tool Determine signal propagation delay time Detect skewing between channels on rising or falling edges Create histograms of different edge relationships

More information

AN IMPROVED ERROR CONCEALMENT STRATEGY DRIVEN BY SCENE MOTION PROPERTIES FOR H.264/AVC DECODERS

AN IMPROVED ERROR CONCEALMENT STRATEGY DRIVEN BY SCENE MOTION PROPERTIES FOR H.264/AVC DECODERS AN IMPROVED ERROR CONCEALMENT STRATEGY DRIVEN BY SCENE MOTION PROPERTIES FOR H.264/AVC DECODERS Susanna Spinsante, Ennio Gambi, Franco Chiaraluce Dipartimento di Elettronica, Intelligenza artificiale e

More information

Display Quality Assurance: Recommendations from AAPM TG270 for Tests, Tools, Patterns, and Performance Criteria

Display Quality Assurance: Recommendations from AAPM TG270 for Tests, Tools, Patterns, and Performance Criteria Display Quality Assurance: Recommendations from AAPM TG270 for Tests, Tools, Patterns, and Performance Criteria Nicholas B. Bevins, Ph.D. TG270 Co-chair Display Check 2 1 TG270 Goals Provide an update

More information

Display Quality Assurance: Recommendations from AAPM TG270 for Tests, Tools, Patterns, and Performance Criteria

Display Quality Assurance: Recommendations from AAPM TG270 for Tests, Tools, Patterns, and Performance Criteria Display Quality Assurance: Recommendations from AAPM TG270 for Tests, Tools, Patterns, and Performance Criteria Nicholas B. Bevins, Ph.D. TG270 Co-chair Display Check 2 TG270 Goals Provide an update to

More information

Data Acquisition Using LabVIEW

Data Acquisition Using LabVIEW Experiment-0 Data Acquisition Using LabVIEW Introduction The objectives of this experiment are to become acquainted with using computer-conrolled instrumentation for data acquisition. LabVIEW, a program

More information

with Carrier Board OSD-232+ TM Version 1.01 On-screen composite video character and graphic overlay Copyright 2010 Intuitive Circuits, LLC

with Carrier Board OSD-232+ TM Version 1.01 On-screen composite video character and graphic overlay Copyright 2010 Intuitive Circuits, LLC OSD-232+ TM with Carrier Board On-screen composite video character and graphic overlay Version 1.01 Copyright 2010 Intuitive Circuits, LLC D escription OSD-232+ is a single channel on-screen composite

More information