a) Which points will be assigned to each center in the first iteration? b) What will be the values of the k new centers (means)?

Size: px
Start display at page:

Download "a) Which points will be assigned to each center in the first iteration? b) What will be the values of the k new centers (means)?"

Transcription

1 CS 378 Cmputer Visin Prblem set 2 Out: Tuesday Sept 22 Due: Mnday Oct 5, by 11:59 PM See the end f this dcument fr submissin instructins. I. Shrt answer prblems [30 pints] 1. Suppse we are using k-means clustering t grup pixels in a (tiny) image based n their intensity. The image s intensities are: 5, 10, 3, 20, 9, 0. We pick the initial centers randmly t be 0 and 9, and set the number f clusters k=2. a) Which pints will be assigned t each center in the first iteratin? b) What will be the values f the k new centers (means)? 2. In rder t segment an image int regins with cnsistent texture, we culd use clustering t grup pixels that prduce similar respnses t a bank f linear filters. Say the filter bank cnsists f eight n x n kernels, each f which is designed t get maximal respnses fr cntrast at a particular rientatin. After filtering an image with all eight filters, each pixel gets an 8- dimensinal feature vectr, crrespnding t all f the filter respnses at that psitin. Fr any tw such vectrs p i and p j, their affinity is defined as: 1 2 Affinity( pi, p j ) = exp p 2 i p j 2σ. This prcedure will have sme prblems arund pixels that are psitined near a true regin bundary in the image. Why? 3. The shapes belw exhibit reflectinal symmetry abut sme vertical axis. Suggest a vtingbased (Hugh transfrm-like) methd that culd detect such symmetry and estimate the axis placement, given sme edge pints n the bject s cntur. Yu may assume we nly care abut bjects that are symmetric abut an axis parallel t the image s y-axis.

2 II. Prgramming prblem: texture-based image matching and segmentatin [70 pints] The gal is t use texture features t segment r cmpare images. We ll experiment with images in which texture is a defining feature. In bth cases, we ll cmpare against a clr-nly baseline. Write prgrams that can d the fllwing: A. Glbal image cmparisns using texture: Use texture t cmpute a glbal cmparisn between tw images, and then classify the image using nearest-neighbr classificatin. First, cmpute a textn cdebk frm a large (~100K) randm sample f filter respnse vectrs extracted frm the prvided images. Secnd, summarize each image by a single glbal (imagewide) histgram f its textn ccurrences. Finally, given any image as a new query, srt the remaining images based n their similarity accrding t the χ 2 (chi-squared) distance between their histgrams. Classify each image in turn as belnging t ne f the tw candidate categries (dalmatian r zebra), depending n which class its nearest neighbr belngs t. Cmpare the verall accuracies when using either glbal texture histgrams r glbal clr histgrams cmputed with the hue channel.

3 B. Texture-based image segmentatin: Given an image, segment it int R regins using lcal textn histgrams cmputed within windws. First, cmpute a textn cdebk (dictinary) frm the input image using k-means n its filter respnse vectrs, where k equals the number f desired textns. Secnd, cnstruct a textn histgram fr each pixel based n the textn cunts within its neighbrhd (as defined by a lcal windw f fixed scale that yu chse). Finally, use k-means again t cluster thse textn histgrams, gruping the image s pixels int R regins. Chse parameter values (k, R, and windw size) that yield a reasnable lking segmentatin (f curse, it wn t perfectly agree with the bject bundaries). Cmpare the utput t what yu get when using k-means t cluster the pixels RGB values int regins. See the end f this dcument fr prvided cde and data, and tips n where t get started cding. Answer each f the fllwing, and include image displays where apprpriate. 1. [10 pts] Lk at the raw filter respnses (as images) fr sme examples frm each class. Chse an image frm each class (ne zebra, ne dalmatian) and, by visual inspectin, select tw f the 38 filters fr which these images respnses illustrate the texture differences well. Display the images and the crrespnding respnses, and explain what we are seeing. 2. [10 pts] Cmpute a universal textn dictinary using filter respnses sampled frm the 26 prvided images. Fr the same tw selected images as abve, display the textn map, where every pixel is shaded r clred accrding t which textn it was assigned. (i.e., if there are 100 ttal textns in the dictinary, yu will have at mst 100 unique values in the textn map fr an image). Briefly explain. 3. [10 pts] Reprt the 1-nearest-neighbr classificatin accuracy using the texture representatin (as described in part A). Classify each f the 26 examples based n hw the ther 25 are ranked. If the first-ranked neighbr has the same label as the input image, it is crrect. The accuracy is the percentage crrectly classified ut f all 26. Briefly explain the results, including any interesting errr cases. 4. [10 pts] Reprt the 1-nearest neighbr classificatin accuracy using clr histgrams frmed with the hue channel f the HSV image (als with χ 2 distance). Hw des it cmpare t the texturebased representatin? 5. [10 pts] Chse tw image examples frm each class (2 zebras, 2 dalmatins), and fr each, display their five mst similar examples accrding t (a) the texture representatin, and (b) the clr representatin. Label the subplts clearly as t what each is shwing. 6. [20 pts] Select ne image and use its filter respnses t cmpute an image-specific textn dictinary. Segment the image using texture features cmputed within windws (as described in part B), and display the riginal image and segmentatin result. Then segment the same image by clustering pixels by their RGB values; display the result. Briefly explain. III. [OPTIONAL] Extra credit [up t 10 pints each, max 20 pints extra credit] 1. Implement basic backgrund subtractin. Use the squared difference at each pixel between the current frame and the backgrund frame t determine where the largest changes ccur. Create the backgrund frame itself by taking the median f all intensities alng the prvided sequence (pset2_extra_credit_images.tar.gz). Let the fregrund pixels be thse that survive sme selected threshld n the squared differences. Extract the cnnected cmpnents, and

4 clean up the fregrund regins with mrphlgical peratrs. (useful Matlab functins: median, bwlabel, imdilate, imclse, imerde, impen). Shw the results. 2. Using a universal textn dictinary, first segment tw images frm the same class (e.g., tw zebras) int regins based n their textn histgrams cmputed frm lcal windws. Then, use the mean textn histgram assciated with each resulting regin t describe it. Let this be the regin-level descriptr. Fr each regin in the first image, find the regin in the secnd image whse descriptr is clsest (using L2). Display the regin-t-regin matching results. Then add the regin s centrid psitin t the descriptrs, and cmpare the regin-t-regin matching results. Briefly explain. 3. Expand n #6 in Sectin II abve: examine and shw the impact f the neighbrhd windw scale parameter n the resulting segmentatins, fr ne f the images. Prvided cde and data: dist2.m: This functin des fast cmputatin f the squared Euclidean distances between tw lists f vectrs. This will be helpful when mapping the per-pixel vectrs f filter respnses t cluster centers t assign a textn t each pixel using the universal textn dictinary (part A). See the specificatins at the tp f the file. filterbank.mat: A.mat data file cntaining the filter bank as a single variable, F. The filter bank is stred as a 49 x 49 x 38 matrix. It cntains 38 ttal filters, where each filter is 49 x 49. (Lad int memry with lad ). makerfsfilters.m: Fr yur reference, this is the Matlab cde used t generate the prvided filter bank. (F = makerfsfilters;) (Cde by Manik Varma et al., displayfilterbank.m : Simple functin t display the individual filters in the filter bank. pset2images.tar.gz: Images fr the experiments. There are tw classes, with 13 clr images in each class. Tips: Where t start? Yur cde will need t be able t perfrm the fllwing tasks: Apply the filter bank t an image t prduce a vectr f respnses at each pixel. Fr N filters, yu will have N values cmputed fr each pixel. Cllect a randm subsample f filter respnse vectrs frm the images. Given a set f filter respnses and the desired number f textns, frm a textn dictinary (cdebk) using kmeans clustering. Given an image s filter respnses and a textn dictinary, map each pixel t its assciated textn (e.g., an index, r cluster ID). Given an image, windw scale, and textn dictinary, at each pixel cmpute the lcal textn histgram using the pixels falling within its lcal neighbrhd windw. (B) Cluster a single image s textn histgrams with k-means t frm a texture-based regin segmentatin. (B) Given an image and textn dictinary, cmpute the image s single glbal textn histgram. (A) Given an image, segment its pixels with k-means n the RGB (3-dimensinal) values. (B)

5 Cmpute an image s clr histgram using the hue channel (see rgb2hsv). The number f bins is a parameter; a value arund 32 shuld be fine. (A) Given tw histgrams, cmpute the χ 2 distance between them. Fr histgrams h i and h j, each with K ttal bins, the distance is: where h i (k) dentes the cunt in the k-th bin f histgram h i. Given a query image, srt all ther images relative t it using the χ 2 distance. Cmpute the accuracy f the 1-nearest neighbr classifier (when using either texture r clr features). Useful Matlab functins: cnv2, fspecial, imread, rgb2gray, imagesc, imshw, subplt, rgb2hsv, kmeans, reshape, dir, min, randperm, srt, lad, im2duble, axis equal;, label2rgb, histc Filtering shuld be dne with dubles, and n grayscale images. Relevant papers fr additinal backgrund reading (see class website fr links): A Statistical Apprach t Texture Classificatin frm Single Images, by Manik Varma and Andrew Zisserman, Internatinal Jurnal f Cmputer Visin, Vl 62, N 1-2, pages , When is Scene Identificatin Just Texture Recgnitin?, by Laura Walker Renninger and Jitendra Malik, Visin Research, Vl 44, pages , Cntur and Texture Analysis fr Image Segmentatin, by J. Malik, S. Belngie, T. Leung, and J. Shi, Internatinal Jurnal f Cmputer Visin, Vl 43, N. 1, pages 7-27, Submissin instructins: what t hand in Electrnically: Yur well-dcumented Matlab cde.m files. A pdf file cntaining the fllwing: Yur name and CS lgin ID at the tp. Yur answers t Sectin I, numbered. Yur respnses and image results Sectin II, numbered. Insert image figures in the apprpriate places fr these questins, and label clearly. (ptinal): any results and descriptins fr extra credit prtins in Sectin III. Submit all the abve with ne call t turnin: >> turnin --submit jaechul pset2 pset2.pdf cdefilexyz.m cdefileabc.m datafile.mat etc. Hardcpy: Print ut the pdf file, and bring it t class n Tuesday 10/6/09. D nt print ut cde. The hardcpy must be identical t what is submitted electrnically by Mnday night.

1. Give an example of how one can exploit the associative property of convolution to more efficiently filter an image.

1. Give an example of how one can exploit the associative property of convolution to more efficiently filter an image. CS 376 Cmputer Visin Spring 2011 Prblem set 1 Out: Tuesday Feb 1 Due: Mnday Feb 14 11:59 PM See the end f this dcument fr submissin instructins. Visit us during ffice hurs t discuss any questins n the

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Cmp 541 Digital Lgic and Cmputer Design Prf. Mntek Singh Fall 2016 Lab Prject (PART A): Attaching a Display t the Prcessr

More information

The WHO e-atlas of disaster risk for the European Region Instructions for use

The WHO e-atlas of disaster risk for the European Region Instructions for use The WHO e-atlas f disaster risk fr the Eurpean Regin Instructins fr use 1 Last Update: June 2011 Cntents 1. Basic system requirements... 3 2. Structure f the WHO e-atlas... 4 2.1. Main menu... 4 2.1.1.

More information

1.12 Equipment Manager

1.12 Equipment Manager Mdule 1 Categry 1 1.12 Equipment Manager Functin f the windw The windw is the central data file fr the Kntrl Pr and cllects the main data fr fees f an bject that t be used in this prject. The Equipment

More information

Lab 1 Load Cell Measurement System

Lab 1 Load Cell Measurement System BME/ECE 386 Lab 1 Lad Cell Measurement System GOALS Lab 1 Lad Cell Measurement System 1) Build and test a lad cell amplifier. 2) Write an Arduin prgram t: a. Acquire data frm a lad cell amplifier b. Cmpute

More information

COMP 110 INTRODUCTION TO PROGRAMMING WWW

COMP 110 INTRODUCTION TO PROGRAMMING WWW COMP 110 INTRODUCTION TO PROGRAMMING WWW http://cmp110www.web.unc.edu Fall 2011 Hmewrk 3 Submissin Deadline: 10:59 AM, Oct 24 Overview Validating Multiple Chess Mves n a Chessbard Fr this assignment yu

More information

Lab 1 Load Cell Measurement System (Jan 09/10)

Lab 1 Load Cell Measurement System (Jan 09/10) BME/ECE 386 Lab 1 Lad Cell Measurement System GOALS Lab 1 Lad Cell Measurement System (Jan 09/10) 1) Test the lad cell amplifier. 2) Write an Arduin prgram t: a. Acquire data frm a lad cell amplifier b.

More information

You Be The Chemist Challenge Official Competition Format

You Be The Chemist Challenge Official Competition Format 2018-2019 Yu Be The Chemist Challenge Official Cmpetitin Frmat This dcument prvides detailed infrmatin regarding the Challenge frmat at each level f the cmpetitin. Schl Crdinatrs, participants, and parents/guardians

More information

DXF2DAT 3.0 Professional Designed Computing Systems 848 W. Borton Road Essexville, Michigan 48732

DXF2DAT 3.0 Professional Designed Computing Systems 848 W. Borton Road Essexville, Michigan 48732 Prgram Infrmatin 1 DXF2DAT 3.0 Prfessinal Designed Cmputing Systems 848 W. Brtn Rad Essexville, Michigan 48732 Cntact: (989) 892-4376 website: http://www.famwrk.net General Infrmatin: inf@famwrk.net Technical

More information

Excel Step by Step Instructions Creating Lists and Charts. Microsoft

Excel Step by Step Instructions Creating Lists and Charts. Microsoft Infrmatin Yu Can Enter in a Wrksheet: Labels: Any type f text r infrmatin nt used in any calculatins. Labels are used fr wrksheet headings and make wrksheets easy t read and understand. Labels can als

More information

Photoshop Elements: Color and Tonal Correction Basics

Photoshop Elements: Color and Tonal Correction Basics Phtshp Elements: Clr and Tnal Crrectin Basics Cntrast Lighten Phtshp Elements: Clr and Tnal Crrectin Basics 1 Sharpen Expsure Phtshp Elements: Clr and Tnal Crrectin Basics 2 Highlights and Shadws All key

More information

Evaluation, Enhancement, Development & Implementation of Content Based Image Retrieval Algorithms

Evaluation, Enhancement, Development & Implementation of Content Based Image Retrieval Algorithms 6. Image Retrieval 6.1 Intrductin The chapter deals with image features, characteristics f image databases used and prpsed methds fr image retrieval. The image retrieval has been carried ut n the basis

More information

Rubik s Cube Recognition and Identification using Computer Vision

Rubik s Cube Recognition and Identification using Computer Vision Rubik s Cube Recgnitin and Identificatin using Cmputer Visin Saichand Bandarupalli and Rahul Dev Appapgu Curse N: CSCI507 Clrad Schl f Mines Intrductin Named after Ern Rubik, its inventr (in 1947) Has

More information

Figure 1: A Battleship game by Pogo

Figure 1: A Battleship game by Pogo CSCI 2312-002: Object Oriented Prgramming Final Prject Assigned: Octber 17, 2017 Design Due: Octber 24, 2017 IN CLASS (Graded as ne hmewrk grade) Final prject Due: Nvember 16, 2017 at 11:59 PM Fr many

More information

5. Experimental Results

5. Experimental Results 5. xperimental Results Prttype mdels f the duble spherical helix the hemispherical helix studied in Sectins 4.3.2 4.4 were cnstructed measured. Fabricatin f these antennas measurement f their radiatin

More information

Locating An IRIS From Image Using Canny And Hough Transform

Locating An IRIS From Image Using Canny And Hough Transform Lcating An IRIS Frm Image Using Canny And Hugh Transfrm Prvi Bhatt Abstract: Iris recgnitin, a relatively new bimetric technlgy, has great advantages, such as variability, stability and security, thus

More information

Security Exercise 12

Security Exercise 12 Security Exercise 12 Asynchrnus Serial Digital Baseband Transmissin Discussin: In this chapter, yu learned that bits are transmitted ver a cpper wire as a series f vltage pulses (a prcess referred t as

More information

Flash Image Rotator Web Part

Flash Image Rotator Web Part Flash Image Rtatr Web Part User Guide Cpyright 2007 Data Springs Inc. All rights reserved. Table f cntents: 1 INTRODUCTION...3 2 INSTALLATION PROCEDURE...4 2.1 After installatin ntes:...5 2.2 Trubleshting...6

More information

Upgrading to PlanetPress Suite Version 5

Upgrading to PlanetPress Suite Version 5 Upgrading t PlanetPress Suite Versin 5 Creatin date: September 2, 2005 Revisin date: June 14, 2006 Table f Cntents System Requirements... 4 Imprtant Cnsideratins... 4 Knwn Issues... 6 Prcedure t imprt

More information

Hospital Task Scheduling using Constraint Programming

Hospital Task Scheduling using Constraint Programming Hspital Task Scheduling using Cnstraint Prgramming Authr: Chaman Chahal Supervisr: Dr. P. Bse, Schl f Cmputer Science Organizatin: Carletn University Curse: COMP4905 Date: Dec. 11, 2012 1 Abstract Hspitals

More information

TC 60 THERMOCOMPUTER TC 60. prog. start stop. Operating Instructions

TC 60 THERMOCOMPUTER TC 60. prog. start stop. Operating Instructions TC 60 prg start stp THERMOCOMPUTER TC 60 h C/h C Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing Curve...2 Checing

More information

1. Constraint propagation

1. Constraint propagation 6.034 Artificial Intelligence, Fall 2006 Prf. Patrick H.Winstn Prblem Set 3 This prblem set is due Wednesday, Octber 18th at 11:59 PM. If yu have questins abut it, ask the TA email list. Yur respnse will

More information

Operating Instructions

Operating Instructions TC 40 THERMOCOMPUTER TC 40 start stp Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing Curve...2 Checing the Prgramme

More information

Lab 6 Spirometer System (Feb 20/21)

Lab 6 Spirometer System (Feb 20/21) GOAL Lab 6 Spirmeter System (Feb 20/21) Demnstrate a spirmeter system incrprating a (1) Lilly-type flw tube (2) piezresistive differential pressure sensr (3) instrumentatin amplifier and lw-pass filter

More information

Operating Instructions

Operating Instructions TC 60/8 THERMOCOMPUTER TC 60/8 temp / time s s temp / time k start stp Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing

More information

Lab3 Audio Amplifier (Sep 25)

Lab3 Audio Amplifier (Sep 25) GOAL Lab3 Audi Amplifier (Sep 25) The gal f Lab 3 is t demnstrate an audi amplifier based n an p amp and ttem-ple stage. OBJECTIVES 1) Observe crssver distrtin in a Class B ttem-ple stage. 2) Measure frequency

More information

Connection tariffs

Connection tariffs Cnnectin tariffs 2016-2019 A. TARIFF CONDITIONS FOR GRID USERS DIRECTLY CONNECTED TO THE ELIA GRID AND FOR DISTRIBUTION GRID OPERATORS, EXCEPTED FOR DISTRIBUTION GRID OPERATORS CONNECTED AT TRANSFORMER

More information

Retinal Blood Vessel Segmentation Using Gabor Wavelet and Line Operator

Retinal Blood Vessel Segmentation Using Gabor Wavelet and Line Operator Internatinal Jurnal f Machine Learning and Cmputing, Vl., N. 5, Octber 01 Retinal Bld Vessel Segmentatin Using Gabr Wavelet and Line Operatr Reza Kharghanian and Alireza Ahmadyfard classificatin: the grey

More information

Frequency Response of a BJT CE Amplifier

Frequency Response of a BJT CE Amplifier Frequency Respnse f a BJT CE Amplifier Run the experiment By clicking the arrw n the Tlbar. Chse values f C B & C C, C E & R C frm the crrespnding drp dwn menus. (Clicking the arrw n the right side f the

More information

Tee (Not a Coupler) Open Circuit Line. Z Z Z jz d

Tee (Not a Coupler) Open Circuit Line. Z Z Z jz d ECSE-2 Spring 22 Analysis Using Matlab Cable System R2 T2 Tee (Nt a Cupler) T TV Set Input R V 75 75 T3 Open Circuit Line The basic principle f this signal blcker is relatively simple. The CATV cable (T2

More information

ELEC 7250 VLSI TESTING. Term Paper. Analog Test Bus Standard

ELEC 7250 VLSI TESTING. Term Paper. Analog Test Bus Standard ELEC 7250 VLSI TESTING Term Paper On Analg Test Bus Standard Muthubalaji Ramkumar 1 Analg Test Bus Standard Muthubalaji Ramkumar Dept. f Electrical and Cmputer Engineering Auburn University Abstract This

More information

Sacramento CA - Insane Inflatable 5K Logistics EVENT ID:

Sacramento CA - Insane Inflatable 5K Logistics EVENT ID: Sacrament CA - Insane Inflatable 5K Lgistics EVENT ID: 135919 PRINT THIS DOCUMENT AND BRING WITH YOU TO THE EVENT Event Lcatin: Califrnia State Fair 1600 Expsitin Blvd Sacrament, CA 95815 PLEASE READ THIS

More information

Table of Contents. ilab Solutions: Core Facilities Core Usage Reporting

Table of Contents. ilab Solutions: Core Facilities Core Usage Reporting Revisin Date: 12/31/2012 Table f Cntents 1. Institutin, Cre Facility and Lab Administratin Reprting Overview...2 2. Hw d I access ilab Reprts?...3 3. What is the General Functinality fr ilab Reprting?...6

More information

A2: Aperture, DOF, & Focus

A2: Aperture, DOF, & Focus Art 205 A2: Aperture, DOF, & Fcus Original RAW Shts Due: Crit Date: Requires 2 Ink Jet Prints (50 pints) Objectives: 1. T understand hw apertures like f-16 & f-22 have a large DOF r range f fcus. 2. T

More information

Banner pocket v3 Page 1/7. Banner pocket v3

Banner pocket v3 Page 1/7. Banner pocket v3 Banner pcket v3 Page 1/7 Banner pcket v3 Descriptin Banner pcket will help yu get the printed sheets arranged in the way yu need fr attaching the frnt and back side pckets tgether. It will crp ne sides

More information

2018 Print and DPI Annual Competition Rules

2018 Print and DPI Annual Competition Rules Brisbane Camera Grup 'Annual Cmpetitin' takes place in Nvember each year. It's the highlight f the club cmpetitin year and submissin standards are cnsistently high. All graded members are eligible and

More information

Introduction to Life Cycle Risk Management Help Page

Introduction to Life Cycle Risk Management Help Page Select a frequently asked questin (FAQ) t skip t its answer. Hw is the curse rganized? Wh shuld take this curse? Hw d I get credit fr this curse? What d all the navigatin buttns d? Hw d I knw what t click?

More information

Using the Laser Cutter

Using the Laser Cutter Using the Laser Cutter Prerequisites Befre yu will be allwed t use the laser cutter, yu must cmplete these three steps: 1. Yu must have cmpleted the Laser Cutter training at Cyberia 2. Yu must schedule

More information

PreLab5 Temperature-Controlled Fan (Due Oct 16)

PreLab5 Temperature-Controlled Fan (Due Oct 16) PreLab5 Temperature-Cntrlled Fan (Due Oct 16) GOAL The gal f Lab 5 is t demnstrate a temperature-cntrlled fan. INTRODUCTION The electrnic measurement f temperature has many applicatins. A temperature-cntrlled

More information

Altis Flight Manager. PC application for AerobTec devices. AerobTec Altis v3 User Manual 1

Altis Flight Manager. PC application for AerobTec devices. AerobTec Altis v3 User Manual 1 Altis Flight Manager PC applicatin fr AerbTec devices AerbTec Altis v3 User Manual 1 Table f Cntents Intrductin...3 Requirements...3 Installatin...3 Applicatin...3 USB Driver fr Altis v3 interface ALink...4.NET

More information

Experiment 7 Digital Logic Devices and the 555-Timer

Experiment 7 Digital Logic Devices and the 555-Timer Experiment 7 Digital Lgic Devices and the 555-Timer Purpse: In this experiment we address the cncepts f digital electrnics and lk at the 555-timer, a device that uses digital devices and ther electrnic

More information

Experiment 7 Digital Logic Devices and the 555-Timer

Experiment 7 Digital Logic Devices and the 555-Timer Experiment 7 Digital Lgic Devices and the 555-Timer Purpse: In this experiment we address the cncepts f digital electrnics and lk at the 555-timer, a device that uses digital devices and ther electrnic

More information

A4: Color. Light: You can usually any lighting that you wish.

A4: Color. Light: You can usually any lighting that you wish. Art 205 A4: Clr Original RAW Shts Due: Crit Date: Requires 2 Ink Jet Prints Munting Crrectly can btain 5 pints extra credit. (50 pints) Objectives: 1. Learn basic clr schemes fr design and aesthetics.

More information

A New Clustering Method for Landsat Images Using Local Maximums of a Multidimensional Histogram

A New Clustering Method for Landsat Images Using Local Maximums of a Multidimensional Histogram Purdue University Purdue e-pubs LARS Sympsia Labratry fr Applicatins f Remte Sensing 1-1-1981 A New Clustering Methd fr Landsat Images Using Lcal Maximums f a Multidimensinal Histgram K. Matsumt M. Naka

More information

CAR ASYST - Quick Start Guide MAIN MENU

CAR ASYST - Quick Start Guide MAIN MENU fficially apprved by CAR ASYST - Quick Start Guide MAIN MENU Main menu The main menu f ur CAR ASYST APP is divided int 7 menu items. Belw yu will find a list f these items including a shrt descriptin.

More information

High Level Design Circuit CitEE. Irere Kwihangana Lauren Mahle Jaclyn Nord

High Level Design Circuit CitEE. Irere Kwihangana Lauren Mahle Jaclyn Nord High Level Design Circuit CitEE Irere Kwihangana Lauren Mahle Jaclyn Nrd 12/16/2013 Table f Cntents 1 Intrductin. 3 2 Prblem Statement and Prpsed Slutin. 3 3 Requirements. 3 4 System Blck Diagram 4.1 Overall

More information

TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE

TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE Cadence Virtus Schematic editing prvides a design envirnment cmprising tls t create schematics, symbls and run simulatins. This tutrial will

More information

Elements and Principles of Design Guided Notes

Elements and Principles of Design Guided Notes Name Perid Date Elements and Principles f Design Guided Ntes DO NOT LOSE THIS PACKET!!! We will be using this packet fr multiple days. Yu will nt get anther packet it yu lse this! Elements & Principles

More information

Lab2 Digital Weighing Scale (Sep 18)

Lab2 Digital Weighing Scale (Sep 18) GOAL Lab2 Digital Weighing Scale (Sep 18) The gal f Lab 2 is t demnstrate a digital weighing scale. INTRODUCTION The electrnic measurement f mass has many applicatins. A digital weighing scale typically

More information

Support Subscribers call

Support Subscribers call Prduced by Cmputer Helper Publishing (CHP). We hpe this sftware makes the tasks f Church administratin easier and mre efficient. Any questins that cannt be answered by these help files shuld be directed

More information

Name: Date: Period: 1. Multi-Genre Character Project

Name: Date: Period: 1. Multi-Genre Character Project Name: Date: Perid: 1 Multi-Genre Character Prject A multi-genre prject is ne large prject with many different parts. Each part represents what yu knw abut a tpic and extends yur thinking in many ways.

More information

Meal Time! Game Concept

Meal Time! Game Concept Meal Time! Game Cncept Lucien LeMenager Kevin Mann Rbert Dyle Wrking Title Meal Time! Prject Thumbnail A game based n turn- based trading card games, Meal Time! pits players against each ther t crwn the

More information

PROBABILITY OF DETECTION OF FLAWS IN A GAS TURBINE ENGINE. Gary L. Burkhardt and R.E. Beissner

PROBABILITY OF DETECTION OF FLAWS IN A GAS TURBINE ENGINE. Gary L. Burkhardt and R.E. Beissner PROBABILITY OF DETECTION OF FLAWS IN A GAS TURBINE ENGINE COMPONENT USING ELECTRIC CURRENT PERTURBATION Gary L. Burkhardt and R.E. Beissner Suthwest Research Institute 6220 CUlebra Rad San Antni, Texas

More information

PRINTING WORKPAPERS MODULE. Introduction. Objectives

PRINTING WORKPAPERS MODULE. Introduction. Objectives MODULE 3 PRINTING WORKPAPERS Intrductin Several reprts are created in the WrkPapers mdule. Thrugh the print screen the user can preview and print hardcpies f the varius reprts. Preview and print, as necessary,

More information

Hands-Free Music Tablet

Hands-Free Music Tablet Hands-Free Music Tablet Steven Tmer Nate Decker Grup Website: steve@wasatch.cm milamberftheassembly@yah.cm http://www.cs.utah.edu/~ndecker/ce3992/ Abstract The typical musician handles a great deal f sheet

More information

ECE 3829: Advanced Digital System Design with FPGAs A Term 2017

ECE 3829: Advanced Digital System Design with FPGAs A Term 2017 ECE 3829: Advanced Digital System Design with FPGAs A Term 2017 Lab 2- VGA display and Light Sensr interface Reprt due at start f class Friday September 15 th Use the prvided Ambient Light Sensr mdule

More information

Experiment 6 Electronic Switching

Experiment 6 Electronic Switching Experiment 6 Electrnic Switching Purpse: In this experiment we will discuss ways in which analg devices can be used t create binary signals. Binary signals can take n nly tw states: high and lw. The activities

More information

From Perspectivities to Perspective Collineations

From Perspectivities to Perspective Collineations Frm erspectivities t erspective Cllineatins Given distinct planes π and π 0 in extended Euclidean space E3, and a pint n neither plane, the assciated ne-pint prjectin with center maps π bijectively nt

More information

The Mathematics of the Rubik s Cube

The Mathematics of the Rubik s Cube In this lessn, students will explre the pssible number ways the pieces f a Rubik's Cube can be arranged, and still fit the criteria fr a Rubik's Cube. Clrs are riented in a set way, s sme pieces (such

More information

ART 301 Methods of Art Education Lesson Plan Format Lesson Components and Planning Strategies

ART 301 Methods of Art Education Lesson Plan Format Lesson Components and Planning Strategies ART 301 Methds f Art Educatin Lessn Plan Frmat Lessn Cmpnents and Planning Strategies Title f Lessn: Bug s Eye View Grade Level: 3-4 I. Cntext: It is the furth quarter f the schl year, and all f the flwers

More information

BTEC EXTENDED DIPLOMA IN CREATIVE MEDIA PRODUCTION (GAMING)

BTEC EXTENDED DIPLOMA IN CREATIVE MEDIA PRODUCTION (GAMING) BTEC EXTENDED DIPLOMA IN CREATIVE MEDIA PRODUCTION (GAMING) UNIT 72 COMPUTER GAME DESIGN ASSIGNMENT 2OF2 COMPUTER GAME CONCEPT & PRODUCTION Student Name: Grup: Games Prject Five: Cmputer Games Design Assignment

More information

Puget Sound Company Overview. Purpose of the Project. Solution Overview

Puget Sound Company Overview. Purpose of the Project. Solution Overview Puget Sund Cmpany Overview Puget Sund Energy is Washingtn State s largest and ldest energy utility, serving nearly 1 millin electric custmers and mre than 650,000 natural gas custmers, primarily within

More information

Appendix D. Photography

Appendix D. Photography Appendix D Phtgraphy 1 I. Taking Phtgraphs Taking phtgraphs is a required NWCA field activity that prvides an imprtant visual recrd f sampling activities at each site. Phtgraphs are taken with a digital

More information

Meaningful Use Stage 2- Menu Measure 3 Imaging Results Configuration Guide

Meaningful Use Stage 2- Menu Measure 3 Imaging Results Configuration Guide Enterprise EHR Meaningful Use Stage 2- Menu Measure 3 Imaging Results Cnfiguratin Guide Last Updated: January 30, 2014 Cpyright 2013 Allscripts Healthcare, LLC. www.allscripts.cm MU Menu 3 Imaging Results

More information

WS-400 BASE STATION FOR WIRELESS INTERCOM WITH FOUR TX/RX MODULES USER MANUAL

WS-400 BASE STATION FOR WIRELESS INTERCOM WITH FOUR TX/RX MODULES USER MANUAL WS-400 BASE STATION FOR WIRELESS INTERCOM WITH FOUR TX/RX MODULES USER MANUAL Issue February 2011 ASL Intercm BV DESIGNED AND MANUFACTURED BY: ASL INTERCOM BV ZONNEBAAN 42 3542 EG UTRECHT THE NETHERLANDS

More information

ELECTRICAL CIRCUITS LABORATORY II EEE 209 EXPERIMENT-6. Operational Amplifiers II

ELECTRICAL CIRCUITS LABORATORY II EEE 209 EXPERIMENT-6. Operational Amplifiers II ADANA SCIENCE AND TECHNOLOGY UNIVERSITY ELECTRICAL ELECTRONICS ENGINEERING DEPARTMENT ELECTRICAL CIRCUITS LABORATORY II EEE 209 EXPERIMENT-6 Operatinal Amplifiers II OPERATIONAL AMPLIFIERS Objectives The

More information

EE 3323 Electromagnetics Laboratory

EE 3323 Electromagnetics Laboratory EE 3323 Electrmagnetics Labratry Experiment #1 Waveguides and Waveguide Measurements 1. Objective The bjective f Experiment #1 is t investigate waveguides and their use in micrwave systems. Yu will use

More information

Review of Image Enhancement in Spatial Domain

Review of Image Enhancement in Spatial Domain Internatinal Jurnal f Cmputer Science and Infrmatin Technlgy Research ISSN 2348-120X (nline) Vl. 2, Issue 4, pp: (194-200), Mnth: Octber - December 2014, Available at: www.researchpublish.cm Review f Image

More information

Microsoft PowerPoint 2007

Microsoft PowerPoint 2007 Micrsft PwerPint 2007 Finding Presentatins n the Web Open the Internet and g t http://www.ggle.cm Click n Advanced Search. Enter wrds r phrases t describe desired results. On the File Frmat line, click

More information

Insert Picture, reduce the size of a Picture and Wrap text around a picture

Insert Picture, reduce the size of a Picture and Wrap text around a picture Insert Picture, reduce the size f a Picture and Wrap text arund a picture Yu can insert pictures frm different places, such as yur cmputer, an nline surce like Bing.cm, a webpage, r a scanned image. Insert

More information

Sibelius In The Classroom: Projects Session 3

Sibelius In The Classroom: Projects Session 3 Online 2012 Sibelius In The Classrm: Prjects Sessin 3 Katie Wardrbe www.midnightmusic.cm.au Using the Ideas feature...3 Rebuilding Twinkle, Twinkle...3... 3 Setting up the prject part 1: PwerPint r Interactive

More information

National Curriculum Programme of Study:

National Curriculum Programme of Study: Natinal Curriculum Prgramme f Study: Cunt in steps f 2, 3, and 5 frm 0, and in tens frm any number, frward and backward. Recall and use multiplicatin and divisin facts fr the 2, 5 and 10 multiplicatin

More information

After Earth Saving Our Future Lesson Plan

After Earth Saving Our Future Lesson Plan After Earth Saving Our Future Lessn Plan Fr Teachers: This lessn is designed fr use with several parts f this site: 1. Hme page and After Earth Saving the Future (link) 2. The Bidiversity Page (link) 3.

More information

This app uses callas pdftoolbox server as the imposition engine and consequently you have to have that program installed on your Switch server.

This app uses callas pdftoolbox server as the imposition engine and consequently you have to have that program installed on your Switch server. Autmatic impsitin Page 1/8 Autmatic impsitin Descriptin Autmatic impsitin will d the mst cmmn impsitins fr yur digital printer. It will autmatically d flders fr A5, A4 r US Letter page sizes in either

More information

Biochemistry Laboratory II CHEM Course Syllabus

Biochemistry Laboratory II CHEM Course Syllabus Bichemistry Labratry II CHEM 4582 Curse Syllabus 1 General Infrmatin COURSE OBJECTIVE The primary bjective f this curse is fr students t learn labratry methds fr characterizing bilgical macrmlecules using

More information

Image Processing of ST2000XM Images with Small Focal Length

Image Processing of ST2000XM Images with Small Focal Length Image Prcessing f ST2000XM Images with Small Fcal Length Part1 CCDSTACK Wrkflw (Release 1.2) Bernhard Hubl, 2007-08-19 CCDSTACK_ST2000XM_eng.dc 02.04.2008 1 / 8 1. CALIBRATION WITH CCDSTACK 1.1. Requirements

More information

DEAD MAN S DOUBLOONS. Rules v1.2

DEAD MAN S DOUBLOONS. Rules v1.2 DEAD MAN S DOUBLOONS Rules v1.2 OVERVIEW Welcme t Dead Man s Dublns, an actin packed bard game fr 2 t 6 players, playable in 30 t 45 minutes. Each player takes n the rle f a legendary pirate ship captain,

More information

Photoshop Elements 7 Intermediate: Layout & Design

Photoshop Elements 7 Intermediate: Layout & Design Phtshp Elements 7 Intermediate: Layut & Design Designing a prject... 2 Preparing pictures fr use in a prject... 2 Creating a new blank dcument... 2 Adding a picture(s) t a prject... 2 Turning n the Ruler/Grid...

More information

Automatic Number Plate Recognition

Automatic Number Plate Recognition Release Ntes Autmatic Number Plate Recgnitin Versin 14.2.0 Release Ntes Revisin 0 This dcument describes new features and reslved issues fr Autmatic Number Plate Recgnitin 14.2.0. Yu can retrieve the latest

More information

What your Board Should look like!

What your Board Should look like! What yur Bard Shuld lk like! Fr almst every science fair prject, yu need t prepare a display bard t cmmunicate yur wrk t thers. In mst cases yu will use a standard, three-panel display bard that unflds

More information

PhotoVu Digital Picture Frame Service & Repair Guide

PhotoVu Digital Picture Frame Service & Repair Guide PhtVu Digital Picture Frame Service & Repair Guide PhtVu, LLC 2450 Central Ave, #G1 Bulder, CO 80301 USA www.phtvu.cm/supprt Versin: 1.0 Table f Cntents Getting Started... 3 Determine Yur Generatin f PhtVu

More information

What Do You Need to Know About OCR?

What Do You Need to Know About OCR? Title: Created: 2/2/2005 Scanner Mdels: Operating Systems: What D Yu Need t Knw Abut OCR? All Windws 98 / ME / 2000 / XP The right OCR prduct can save yu time and mney. Buying the wrng prduct will waste

More information

EE 311: Electrical Engineering Junior Lab Phase Locked Loop

EE 311: Electrical Engineering Junior Lab Phase Locked Loop Backgrund Thery EE 311: Electrical Engineering Junir Lab Phase Lcked Lp A phase lcked lp is a cntrlled scillatr whse instantaneus frequency is dynamically adjusted thrugh multiplicative feedback and lw

More information

CIHS English 2 Honors Summer Reading Assignment

CIHS English 2 Honors Summer Reading Assignment CIHS English 2 Hnrs Summer Reading Assignment Dear Prspective English 2 Hnrs Students: Attached yu will find the summer reading and writing assignments required fr entry int the curse this fall. It is

More information

Troubleshooting Guide StarFire Satellite Changes

Troubleshooting Guide StarFire Satellite Changes Trubleshting Guide StarFire Satellite Changes This guide is updated t reflect the sftware frm NavCm which is related t the StarFire satellite and frequency changes. The mst recent versin f sftware fr bth

More information

Art of Work Look & See: Who do you want to be? Utah Museum of Fine Arts Educator Resources and Lesson Plans Fall 2016

Art of Work Look & See: Who do you want to be? Utah Museum of Fine Arts   Educator Resources and Lesson Plans Fall 2016 bjects frm the UMFA Educatin Cllectin Art f Wrk Lk & See: Wh d yu want t be? Utah Museum f Fine Arts www.umfa.utah.edu Educatr Resurces and Lessn Plans Fall 2016 American Suthwest Bear Kachina Dll Cttnwd

More information

Desktop Teller Exception User Guide

Desktop Teller Exception User Guide Desktp Teller Exceptin User Guide Jammed Dcuments If a dcument jams during the scanning prcess, the scanner will stp, and a message bx will display a Device Errr Message, as shwn belw: Click OK t allw

More information

A Practical Implementation of Face Detection by Using Matlab Cascade Object Detector

A Practical Implementation of Face Detection by Using Matlab Cascade Object Detector 2015 19th Internatinal Cnference n System Thery, Cntrl and Cmputing (ICSTCC), Octber 14-16, Cheile Gradistei, Rmania A Practical Implementatin f ace Detectin by Using Matlab Cascade Object Detectr Elena

More information

Laboratory: Introduction to Mechatronics. Instructor TA: Edgar Martinez Soberanes Lab 1.

Laboratory: Introduction to Mechatronics. Instructor TA: Edgar Martinez Soberanes Lab 1. Labratry: Intrductin t Mechatrnics Instructr TA: Edgar Martinez Sberanes (eem370@mail.usask.ca) 2015-01-12 Lab 1. Intrductin Lab Sessins Lab 1. Intrductin Read manual and becme familiar with the peratin

More information

WiFi Lab C. Equipment Needs:

WiFi Lab C. Equipment Needs: WiFi Lab C Event Objective: Teams will cnstruct an antenna prir t the turnament that is designed t transmit a signal at 2.4 GHz and cmplete a written test n the principles f electrmagnetic wave prpagatin.

More information

Razor Tracking: User Guide

Razor Tracking: User Guide Cntents 1. Setup Instructins...3 1.1 Administratin...3 GPS Device Inf...3 Peple Management...4 Vehicle Setup (Fleet and Asset Devices)...5 Vehicle Grup Setup...7 Departments...7 Camera Management...8 Public

More information

SEARCHING PROVINCIAL NETLAW

SEARCHING PROVINCIAL NETLAW SEARCHING PROVINCIAL NETLAW Prvincial NetLaw ffers access t all Acts, Ordinances and Regulatins currently in frce and applicable t all 9 prvinces frm 1910 t date. Each amendment t an Act, Ordinance r Regulatin

More information

INLS 560 Lab 4: Wheel of Fortune

INLS 560 Lab 4: Wheel of Fortune INLS 560 Lab 4: Wheel f Frtune Descriptin Fr this assignment, yu will create a prgram that is a simple game f Wheel f Frtune (http://en.wikipedia.rg/wiki/wheel_f_frtune_(u.s._game_shw)). Yu can wrk in

More information

Dialectical Journals. o o. Sample Dialectical Journal entry: The Things They Carried, by Tim O Brien Passages from the text Pg#s Comments & Questions

Dialectical Journals. o o. Sample Dialectical Journal entry: The Things They Carried, by Tim O Brien Passages from the text Pg#s Comments & Questions Bay Path Reginal Vcatinal Technical High Schl Summer Reading Assignment 2018 Any nvel by Neal Shusterman Students will read ne nvel by Neal Shusterman, any nvel, and cmplete six (6) dialectical jurnal

More information

TROUBLESHOOTING GUIDE

TROUBLESHOOTING GUIDE TROUBLESHOOTING GUIDE Dcument revisin 1.3 Last revised: December 6, 2017 Recn Wireless Blckage and Flw Mnitr Trubleshting Guide 2014-2017 Intelligent Agricultural Slutins All Rights Reserved. Recn Wireless

More information

Lab 1 Fun with Diodes

Lab 1 Fun with Diodes GOAL Lab 1 Fun with Dides The verall gal f this lab is t gain sme experience building and simulating sme useful dide circuits. OBJECTIVES T build, test, simulate, and understand the fllwing circuits: 1)

More information

OBJECT OF THE GAME COMPONENTS

OBJECT OF THE GAME COMPONENTS O nce upn a time a witch lived alne in her huse in the depths f the frest. Her favrite hbby was baking yummy gingerbread; in fact, she lved gingerbread s much that she built her entire huse ut f it. Unfrtunately,

More information

Alberta Infrastructure. Digital Project Delivery COBie Requirements

Alberta Infrastructure. Digital Project Delivery COBie Requirements Alberta Infrastructure Digital Prject Delivery COBie Requirements COBie Requirements Table f Cntent COBie Requirements Objective 2 COBie Standard 2 1. COBie Deliverable 3 1.1 Cmpressed File 3 1.2 The COBie

More information

Signature Assignment. Course. ANTH 2302: Introduction to Archaeology. Ethical Case Dilemma. Assignment ID (to be assigned)

Signature Assignment. Course. ANTH 2302: Introduction to Archaeology. Ethical Case Dilemma. Assignment ID (to be assigned) Signature Assignment : Intrductin t Archaelgy Outcmes/Rubrics t be Assessed by the Assignment Cmmunicatin Critical Thinking Empirical and Quantitative Reasning Scial Respnsibility Assignment Descriptin

More information

AP Language and Composition

AP Language and Composition AP Language and Cmpsitin 2018-2019 This summer yu are required t read three bks. They are: Outliers by Malclm Gladwell, The Clr f Water by James McBride, and The Old Man and the Sea by Ernest Hemingway

More information