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

Size: px
Start display at page:

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

Transcription

1 th 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 Alinte Department f Autmatic Cntrl and Applied Infrmatics Technical University Gherghe Asachi f Iasi Iasi, Rmania alinte.elena@ac.tuiasi.r Crneliu Lazar, Member, IEEE Department f Autmatic Cntrl and Applied Infrmatics Technical University Gherghe Asachi f Iasi Iasi, Rmania clazar@ac.tuasi.r Abstract: The detectin f faces in an image is a subject ften studied in cmputer visin literature. The algrithm which allwed face detectin, impsing new standards in this area, was the Vila Jnes algrithm. In this paper, a practical implementatin f a face detectr based n Vila-Jnes algrithm using Matlab cascade bject detectr is presented. Emplying the system type bject visin.cascadeobjectdetectr, eight face detectrs were develped using the traincascadeobjectdetectr functin and tuning the number f cascade layer and the alse Alarm Rate. r different tuning parameters, the perfrmances f the face detectrs were analyzed. Keywrds: Vila Jnes algrithm, face detectin, AdaBst, integral image, cascade bject detectr I. INTRODUCTION In many applicatins, such as driver face mnitring, face recgnitin, vide surveillance, human cmputer interface r image database management, human face detectin is an imprtant and cmplex prcess. The cmplexity f the face detectin algrithms is due t the variatins in illuminatin, backgrund, visual angle and facial expressins and the implementatin is nt easy [1]. ace detectin algrithms are usually divided int tw general categries [2]: (i) feature-based and (ii) learning-based methds. The algrithms frm the first categry are based n the assumptin that face in the image can be detected based n sme simple features, independent f ambient light, face rtatin and pse. Thus, a simple methd uses image prjectin t detect faces under the assumptin that the backgrund is unifrm and with the vertical prjectin f the gray level image is determined the face psitin [3]. Anther feature-based face detectin apprach is based n a skin clr mdel determined by using the prbability distributin in a clr space. The face is detected in image by applying a threshld n the mdeled distributin as in [4].The algrithms frm the secnd categry are mre rbust but they need a greater cmputatinal effrt. Learning-based methds use a number f training samples and benefit frm statistical mdels and machine learning algrithms. rm this categry, Vila- Jnes face detectr [5] is ne f the mst extensively used. The detectr can be extended t ther kinds f bjects. The cnvergence f the training phase f this algrithm depends a lt n the training data. The Vila-Jnes face detectr can run in real time because it is based n the fllwing main ideas [6]: - rapid cmputatin f Haar-like features using the integral image; - classifier learning with AdaBst t select the best features; - the attentinal cascade structure which rejects the majrity f the sub-windws in early layers f the detectr, making the detectin prcess extremely efficient. Due t the simplicity f extracted features prcess and selectin f the best features, Vila-Jnes face detectr is fast and rbust, being reprted many and varius implementatins fr different applicatins. An implementatin used successfully is the ne in OpenCV. A cmplete algrithmic descriptin f Vila-Jnes face detectin methd, with a learning cde and a learned face detectr is presented in [7]. Anther implementatin incrprates six different types f feature images int the Vila and Jnes' algrithm [8] t imprve its perfrmance. Cmputer Visin System Tlbx supprts several appraches t bject detectin in an image r vide, including the Vila-Jnes algrithm [9]. The Vila- Jnes algrithm uses Haar-like features and a cascade f classifiers t identify pretrained bjects, including faces, nses, eyes, and ther bdy parts. It is als pssible t train a custm classifier. In this paper is presented a practical implementatin f a frntal view face detectin algrithm based n Vila-Jnes apprach using Matlab cascade bject detectr. Emplying the Matlab system bject visin.cascadeobjectdetectr, a face detectr was develped cnfigurated t use the user classificatin mdel specified in the XMLILE input file. The file is created with the help f the traincascadeobjectdetectr functin. The attentinal cascade training is dne using a set f psitive samples (windws with faces) and a set f negative images. r btaining a mre accurate detectr, the number f cascade layers and the functin parameters were tuned. inally, fr different tuning parameters the perfrmances f the face detectr were analyzed /15/$ IEEE 785

2 This paper is rganized as fllws. In Sectin 2, is presented Vila-Jnes face detectin algrithm. Sectin 3 illustrates the implementatin f the Vila-Jnes algrithm using Matlab cascade bject detectr. In sectin 4, we tested ur prpsal face detectin system. Sectin 5 describes the cnclusin and the future wrk. II. VIOLA JONES ALGORITHM The Vila Jnes algrithm is intended fr real time detectin f faces frm an image. Its real time perfrmance is btained by using Haar type features, cmputed rapidly by using integral images, feature selectin using the AdaBst algrithm (Adaptive Bst) and face detectin with attentinal cascade. A. eature calculatin Starting frm the cmmn characteristics f the faces, such as the regin arund the eyes is darker than the cheeks r the regin f the nse is brighter than thse f the eyes, five Haar masks (ig. 1) were chsen fr determining the features, calculated at different psitins and sizes. Haar features are calculated as the difference between the sum f the pixels frm the white regin and the sum f the pixels frm the black regin. In this way, it is pssible t detect cntrast differences. btained the integral ne and hw is cmputed the sum f pixels within a rectangle regin using integral image A C B 1 D a) b) ig. 3. Integral image: a) riginal image I; b) integral image II; c) pixel cmputatin frm the regin D using integral image r the lcatin (i, j), the integral image II cntains the sum f the pixels abve and t the left f (i, j), inclusive: c) 3 4 Type 1 Type 2 Type 3 ig. 1. Haar masks used Type 4 Type 5 II ( i, j) I( s, t), 1 i N, 1 j N 1si 1t j The sum f the pixels within rectangle can be cmputed with fur array references. The value f the integral image at lcatin 1 is the sum f the pixels in rectangle A. The value at lcatin 2 is A + C, at lcatin 3 is A + B, and at lcatin 4 is A + B + C + D. The sum within D can be cmputed as (2 + 3). ig. 2. Type 2 Haar feature frm which the intensity difference between the pixels frm eyes regin and the cheek regin can be bserved If we cnsider the mask M frm ig. 2, the Haar feature assciated with the image I behind the mask is defined by: I( i, j) white I( i, j) black 1i N 1 j N The features are extracted fr windws with the dimensins f 24x24 pixels, which are mved n the image where we want t detect faces. r such a windw, Haar masks are scaled and mved, resulting 162,336 f features. T reduce the cmputatin time f the Haar features, which vary depending n the size and type f the feature, the integral image was used. In ig. 3 is illustrated hw frm an riginal image is B. eature selectin using AdaBst algrithm As the number f Haar features fr an image with 24 x 24 pixels is d = , and many f them are redundant, AdaBst algrithm was used t select a smaller number f features. The basic idea is t build a cmplex classifier (decisin rule) using a weighted linear cmbinatin f weak classifiers. Every feature f is cnsidered a weak classifier, defined by: 1, if pf ( x) p h( x, f, p, ) 0, therwise where x is a 24 x 24 pixel image,ɵ is a threshld and p is a parity. AdaBst algrithm [10] is based n a training set which cntains n pairs (x i, y i ), where x i is a psitive r a negative image, and y i is a label assigned t each image and is equal t 1 fr a psitive image and t -1 fr a negative image. Each image is weighted with wi R and AdaBst algrithm aims 786

3 t decrease lsses defined by wi 1yi f ( xi) by adjusting the values f the weights w i. AdaBst algrithm cnsists in T iteratin, frm which T weak classifiers, meaning T features, will be selected. At each stage t f bsting is perfrmed: Step 1: with data xi ( t 1) weighted frm the previus phase, train all weak classifiers (d = ) and chse the mst efficient weak classifier h t that will becme a cmpnent f the strng classifier. Step 2: Cmbine the weak classifier with ther weak classifiers declared the mst efficient in the previus phases. n i1 Step 3: calculate the weighted errr e w1 ( ) n t i ht xi yi i1 update the weights fr iteratin (t + 1) with the frmula: w() t 1 1 i i, wi ( t 1) 1ht ( xi) yi 1ht ( xi) yi 2 et 1et and In this way, the next weak classifier will fcus n harder examples frm the training set. inally, the strng classifier will be a linear cmbinatin f T weak classifiers whse decisin rule will be: T 1 1 if h ( x) t t t hx ( ) t1 2 t1 0, therwise 1 1e where the weights are ln t t. These weights will be 2 et larger fr a weak classifier that has a small errr and will be smaller fr a weak classifier with a high classificatin errr. C. Attentinal Cascade After AdaBst algrithm, a strng classifier will result that classifies the windws f NxN size well enugh. Since, n average, nly 0.01% f the windws are psitive images, meaning faces, nly ptentially psitive windws must be examined. T Instead, t achieve a higher detectin rate and a smaller misclassified images detectin rate, we shuld use anther strng classifier that classifies crrectly the befre misclassified images. This creates the attentinal cascade, as shwed in ig. 4. At the first layer f the attentinal cascade, a strng classifier with few features is used, which will filter/reject mst negative windws. A cascade f classifiers that are becming mre and mre cmplex (with mre features) will fllw and they will allw t achieve a better detectin rate. At each layer f the cascade, the negative images classified crrectly will be eliminated and the new strng classifier will have a mre difficult task than the previus step classifier. inally, the cascade f classifiers will perate as fllws: - the image will be split int multiple windws; - every windw is an input in the attentinal cascade; - at every layer, the windw is checked if it cntains a face r nt accrding t the strng classifier; - if it is negative, the windw is rejected and the steps will be repeated fr anther windw; - if it is psitive, it means that the windw is a pssible face and will mve t the next layer f the cascade; - the windw cntains a face if it passes all layers f the attentinal cascade. III. ACE DETECTOR IMPLEMENTATION USING MATLAB The Cmputer Visin Tlbx frm the Matlab envirnment cntains a cascade bject detectr (visin.cascadeobjectdetectr) which creates a system bject (detectr) capable t detect bjects using the Vila Jnes algrithm. By default, the detectr is set t detect faces in an image, but it can als detect the nse, muth, eyes r the upper part f the bdy defined by the input string MODEL (ClassificatinMdel). This paper presents a detectr based n Haar type features, that builds a system type bject, cnfigurated t use the user classificatin mdel specified in the XMLILE input file. The file is created with the help f the traincascadeobjectdetectr functin. All sub-windws Strng classifiers 1 A A A 2 3 n A ace Rejected sub - windws ig.4 Attentinal cascade 787

4 A. Training the detectr using the traincascadeobjectdetectr functin. Because the system bject frm Cmputer Visin Tlbx visin.cascadeobjectdetectr cntains nly a few pretrained classifiers, insufficient fr a face detectin applicatin, the attentinal cascade requires training fr each user, using the traincascadeobjectdetectr functin. The attentinal cascade training is dne using a set f psitive samples (windws with faces) and a set f negative images. The negative samples are autmatically generated frm the set f negative images. r btaining a mre accurate detectr the number f cascade layers, the feature type (Haar in ur case) and the functin parameters must be specified. The attentinal cascade training (ig.5) is dne layer by layer, as fllws: - Train Layer One using: Calculated number f psitive samples, which is less than the ttal number f user-prvided samples. Generated negative samples frm user-prvided negative images. - Train layer Tw: - Train layer N: Use the results frm layer ne. Classify all psitive samples and discard samples misclassified as negatives. Use the same calculated number f psitive samples f the remaining in psitive samples. Generate negative samples by prcessing negative images with sliding windw and using false-psitive classified samples. Use the results frm the previus layer. Classify all psitive samples and discard samples misclassified as negatives. The ptinal functin parameters are: - ObjectTrainingSize: the size f the bjects used fr training is in the frm f a vectr with tw elements. Befre training the attentinal cascade all negative and psitive images will be resized t the values specified by the user. - T have better results, the value f the 'ObjectTrainingSize' parameter shuld be as clse as pssible t the size f the bject detected. T reduce the training duratin the value f the 'ObjectTrainingSize' parameter must be smaller than the size f the bject. The default value f the parameter is aut the median widthlength rati will be calculated. - NegativeSamplesactr: the multiplicatin factr f the number f psitive samples fr btaining the number f negative samples used in the training f the attentinal cascade. The default value is 2. - alsealarmrate: the false psitive result rate (alsepsitiverate) accepted fr each layer f the attentinal cascade. A false psitive result represents a negative sample classified as a face. The parameter value can be a number in the interval (0, 1] and the default value is TruePsitiveRate: the psitive result rate crrectly detected fr each layer. The parameter value can be a number in the interval (0, 1] and the default value is eaturetype: the feature type used fr training. The accepted types are Haar, LBP and HOG and fr this paper, the feature type used was Haar. The functin parameters must be specified fr achieving an ptimal functining detectr. Setting the parameters is based n the fllwing cmprmises: - r a small training set - Decrease the number f layers and set a lwer false psitive rate fr each layer. - r a large training set (in the thusands) - Increase the number f layers and set a higher false psitive rate fr each layer. - r reducing the prbability f missing an bject it is recmmended t increase the true psitive rate. - r reducing the number f false detectins it is recmmended t increase the number f layers r decrease the rate f false psitive results. ig. 5 The attentinal cascade training 788

5 r training the detectr, psitive images with size f 24 x 24, which cntain nly the crpped face, are used. The psitive samples will cnsist f an array f structures where the address f the psitive sample and the regin where the face is lcated in this case, the whle image, will be retained. The pseudcde used t btain the psitive samples is: r each psitive image Put in penilename <- the address f the psitive image Put in psitiveinstances(number). ObjectBundingBxes <- [ ] Put in psitiveinstances(number).imageilename <- penilename The negative samples will be autmatically generated frm the negative images prvided by the user. The negative images are specified by the path f their flder: negativelder = 'D:\matlab2015\imagininegative\'; The executin f the traincascadeobjectdetectr functin which trains a detectr with the alse Psitive Rate equal t 0.3 and the number f layers equal t 16, will be as fllws: traincascadeobjectdetectr('haar500v2.xml',psitiveinst ances,negativelder,'numcascadelayers',16,'alsealarmrat e',0.3,'eaturetype','haar'); B. ace detectr based n Vila Jnes algrithm r creating the system bject (detectr) that detects faces frm an image, using the Vila Jnes algrithm, the fllwing cmmand is used: detectr = visin.cascadeobjectdetectr( attentinalcascade.xml ), where the nly parameter is represented by the name f the xml file in which the attentinal cascade was saved. After the creatin f the detectr, the step methd is called by the fllwing syntax: BBOX = step(detectr, I) which returns BBOX, an M by 4 matrix defining M bunding bxes cntaining the detected bjects. Each rw cntains 4 elements [x y width height], that specify in pixels, the upper-left crner and size f a bunding bx. In rder t use a detectr btained frm training, the fllwing steps are dne:i) pen the desired image; ii) create the detectr bject; iii) identify faces frm the image; iv) anntate the faces; v) shw image with anntated faces. IV. EXPERIMENTAL RESULTS The prpsed face detectin algrithm based n Vila- Jnes was implemented using Matlab cascade bject detectr with different setting parameters f the Matlab functin traincascadeobjectdetectr, resulting eight face detectrs. The perfrmances f these detectrs were analyzed using 3 different images: I1 with 6 faces (2128x1416px), I2 with 11 faces (1920x1080px) and I3 with 6 faces (1752x1360px). We have trained the detectrs, prviding 1000 psitive images and 1000 negative images. We started with the default parameters given in Sectin III, resulting the detectr D1. After that, we decreased/increased the number f layers (NL) and/r the alse Alarm Rate (AR), btaining detectrs D2- D8. The results btained with the eigth trained detectrs fr the 3 images are illustrated in Table 1, where the number f detected faces (ND) is given fr every detectr. Table 1. Results f face detectin Detectr NL AR I1-ND I2-ND I3-ND D D D D4 26/ D D D7 22/ D8 26/ There were sme detectrs that have stpped frm training because mre negative images were needed. The resulting detectrs (D4, D7, D8) had less stages than the wanted number (table 1). Starting frm the default patrameters, better results were btained by increasing the number f layers and decreasing the alse Alarm Rate. The best results were btained with detectr D8 and are shwn in ig. 6-8 fr images I1-I3. ig.6 ace detectin with D8 fr I1 rm Table 1, it is bserved that keeping cnstant AR = 0.5, the results are imprved by increasing the number f levels frm NL = 16 (D2) t NL = 26/23 (D4). A high value f the alse Alarm Rate (AR = 0.7) leads t pr results wrsen alng with reducing the number f levels (see results fr D5 789

6 and D6 in Table 1). Ntable results were btained with a lw value f the the alse Alarm Rate (AR = 0.3) and the best fr a high value f NL (see results fr D7 and D8 in Table 1). ig.7 ace detectin with D8 fr I2 ace detectin is a difficult task due t the many variatins in scale, lcatin, rientatin, pse, facial expressin, lighting cnditins, cclusins etc. r example, in the image I2 peple are nt placed in the fregrund and therefre the results btained with the 8 detectrs are nt the best, never btaining the detectin f nly 11 faces. ig.7 ace detectin with D8 fr I3 As seen in Table 2, the respnse time f the 8 face detectrs D1-D8 with different tuning parameters is satisfactry t an applicatin f real-time face detectin. V. CONCLUSIONS Using visin.cascadeobjectdetectr, a Matlab bject system, a face detectr based n Vila-Jnes algrithm has been develped. Starting frm several pretrained classifiers fr detecting frntal faces, we used the traincascadeobjectdetectr functin t train ur face detectr classifier, emplying a set f psitive samples and a set f negative images. Selecting the functin parameters, we ptimized the number f layers, the false psitive rate and the true psitive rate, resulting mre detectrs. Using three different images with 6, 11 and 6 faces, all detectrs were tested. T get better results with a higher psitive rate, mre images are required in the training prcess. REERENCES [1] Cha Zhang, Zhengyu Zhang, Bsting-based face detectin and adaptatin, Synthesis Lectures n Cmputer Visin, Vl. 2, N. 1, Pages 1-140, Mrgan & Claypl Publishers, [2] M. H. Yang, D. J. Kriegman and N. Ahuja, Detecting faces in images: a survey, IEEE Transactins n Pattern Analysis and Machine Intelligence, vl. 24, n. 1, [3]. Wang and H. Qin, A PGA based driver drwsiness detecting system, Prceedings f IEEE Internatinal Cnference n Vehicular Electrnics and Safety, Xian, Octber, [4] J. Batista, A drwsiness and pint f attentin mnitring system fr driver vigilance, Prceeding f IEEE Intelligent Transprtatin Systems Cnference,, Seattle, USA, Octber, [5] P. Vila and M. Jnes, Rapid bject detectin using a bsted cascade f simple features, Prceeding f Internatinal Cnference n Cmputer Visin and Pattern Recgnitin (CVPR), Kauai, HI, USA, [6] P.Vila and M. Jnes, Rbust real-time face detectin, Internatinal Jurnal f Cmputer Visin, 57(2), 2004, pp [7] Y. Wang, An alasysis f the Vila Jnes face detectin algrithm, Image Prcessing On Line, 4, 2014, pp [8] Qian Li, Niaz, U., Meriald, B., An imprved algrithm n Vila- Jnes ject detectr, 10 th Internatinal Wrkshp n Cntent-Based Multimedia Indexing (CBMI), Annecy, June, 2012, pp.1-6. [9] [10] R. E. Schapire, A brief intrductin t bsting Prc. f the Sixteenth Internatinal Jint Cnference n Artificial Intelligence, Having in view that the gal f face detectin is t determine whether r nt there are any faces in an image and, if present, return the image lcatin and extent f each face in real time, the respnse time f the detectr is an imprtant perfrmance. Table 2 Time respnse (sec) f face detectrs D1 D2 D3 D4 D5 D6 D7 D8 I I I

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)?

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)? 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

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

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

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

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

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

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

Bulletin of the Transilvania University of Braşov Vol 8(57), No Series III: Mathematics, Informatics, Physics,

Bulletin of the Transilvania University of Braşov Vol 8(57), No Series III: Mathematics, Informatics, Physics, Bulletin f the Transilvania University f Braşv Vl 8(57), N. 2-2015 Series III: Mathematics, Infrmatics, Physics, 125-130 ALGORITHM FOR SOLVING A PUZZLE PROBLEM Adrian DEACONU 1 Abstract We present an algrithm

More information

Dry Contact Sensor

Dry Contact Sensor www.akcp.cm Dry Cntact Sensr Intrductin The Dry Cntact sensr is a simple cnnectin t burglar alarms, fire alarms r any applicatin that requires mnitring by the unit. Dry cntact sensrs are user definable

More information

Workflow Working Group

Workflow Working Group Wrkflw Wrking Grup June 19, 2007 Chiba University Ann McCarthy Lexmark Internatinal Inc. Chair, Wrkflw Wrking Grup presented by: William Li Wrkflw WG Charter T identify a small number f the mst cmmnly

More information

NATF CIP Requirement R1 Guideline

NATF CIP Requirement R1 Guideline Open Distributin NATF CIP 014-2 Requirement R1 Guideline Disclaimer This dcument was created by the Nrth American Transmissin Frum (NATF) t facilitate industry wrk t imprve physical security. NATF reserves

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

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

Dry Contact Sensor. Communications cable - RJ-45 jack to sensor using UTP Cat 5 wire. Power source: powered by the unit. No additional power needed.

Dry Contact Sensor. Communications cable - RJ-45 jack to sensor using UTP Cat 5 wire. Power source: powered by the unit. No additional power needed. Intrductin Dry Cntact Sensr The Dry Cntact sensr is a simple cnnectin t burglar alarms, fire alarms r any applicatin that requires mnitring by the unit. Dry cntact sensrs are user definable and can be

More information

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

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

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

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

SARMAP RELEASE NOTES. Version: 7.0 (July 2016) rpsgroup.com

SARMAP RELEASE NOTES. Version: 7.0 (July 2016) rpsgroup.com SARMAP RELEASE NOTES Versin: 7.0 (July 2016) 55 Village Square Dr. Suth Kingstwn, RI 02879 Tel: (401) 789-6224 Fax: (401) 789-1932 Email: MapSupprt@ Table f Cntents Table f Cntents...ii 1 Intrductin...

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

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

Automated Design of an ASIP for Image Processing Applications

Automated Design of an ASIP for Image Processing Applications Autmated Design f an ASIP fr Image Prcessing Applicatins Henj Scht and Henk Crpraal Delft University f Technlgy Department f Electrical Engineering Sectin Cmputer Architecture and Digital Technique P.O.

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

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

Cleveland Public Theatre. Catapult. Request for Proposals. Deadline for submissions is Monday, June 12 th, 2017

Cleveland Public Theatre. Catapult. Request for Proposals. Deadline for submissions is Monday, June 12 th, 2017 Cleveland Public Theatre Catapult Request fr Prpsals Cleveland Public Theatre s New Play Develpment CPT s missin is t raise cnsciusness and nurture cmpassin thrugh grundbreaking perfrmances and life-changing

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

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

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

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

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

AccuBuild Version 9.3 Release 05/11/2015. Document Management Speed Performance Improvements

AccuBuild Version 9.3 Release 05/11/2015. Document Management Speed Performance Improvements AccuBuild Versin 9.3 Release 05/11/2015 Dcument Management Speed Perfrmance Imprvements The entire dcument management system and security system design was retled which shuld result in majr speed imprvements

More information

ACA Standard Measurement One-time program

ACA Standard Measurement One-time program Service Request 101183 ACA Standard Measurement One-time prgram Created n: December 22, 2015 Last Mdified n: 12/23/2015 Prepared by Baskar Chitravel Infrmatin Technlgy Services Office f the President University

More information

PAPER SPACE AND LAYOUTS

PAPER SPACE AND LAYOUTS PAPER SPACE AND LAYOUTS There are tw distinct wrking envirnments in AutCAD namely: Mdel Space and Paper space. Prjects can be develped by either wrking in the mdel space thrugh the use f MVSETUP r PAPER

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

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

DesignCon A New Reference Design Development Environment for JPEG 2000 Applications

DesignCon A New Reference Design Development Environment for JPEG 2000 Applications DesignCn 2003 System-n-Chip and ASIC Design Cnference Reference Design Paper A New Reference Design Develpment Envirnment fr JPEG 2000 Applicatins Authrs Bill Finch Vice President, CAST Inc. Warren Miller

More information

ELECTRICAL MEASUREMENTS

ELECTRICAL MEASUREMENTS Physics Department Electricity and Magnetism Labratry ELECTRICAL MEASUREMENTS 1. Aim. Learn t use measuring instruments: Digital multimeter. Analg scillscpe. Assembly f simple elementary circuit. Cllectin

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

Creating HyperLynx DDRx Memory Controller Timing Model

Creating HyperLynx DDRx Memory Controller Timing Model Creating HyperLynx DDRx Memry Cntrller Timing Mdel AppNte 10706 A P P N T E S SM Creating HyperLynx DDRx Memry Cntrller Timing Mdel By: Min Maung Last Mdified: April 30, 2009 1.0 ntrductin The DRAM and

More information

Pro Audio White Space Finder

Pro Audio White Space Finder Pr Audi White Space Finder 1 / 48 Intrductin Welcme t Pr Audi White Space Finder (PAWS4400) -- a new, PC-based RF spectrum analyzer specifically designed fr the prfessinal wireless audi and vide industries.

More information

KIP Cost Center User Guide

KIP Cost Center User Guide - 1 - KIP Cst Center User Guide Cntents 1 Intrductin... 3 1.1 Requirements:... 4 1.2 Supprted Operating Systems... 4 2 Installatin... 5 3 Setup... 8 4 KIP Cst Center Main Screen Print Mde... 12 4.1 Lading

More information

Composite Materials with Self-Contained Wireless Sensing Networks

Composite Materials with Self-Contained Wireless Sensing Networks Cmpsite Materials with Self-Cntained Wireless Sensing Netwrks Kristin Schaaf, Rbert Kim, and Sia Nemat-Nasser Department f Mechanical and Aerspace Engineering, Center f Excellence fr Advanced Materials,

More information

Processors with Sub-Microsecond Response Times Control a Variety of I/O. *Adapted from PID Control with ADwin, by Doug Rathburn, Keithley Instruments

Processors with Sub-Microsecond Response Times Control a Variety of I/O. *Adapted from PID Control with ADwin, by Doug Rathburn, Keithley Instruments PID Cntrl with ADwin Prcessrs with Sub-Micrsecnd Respnse Times Cntrl a Variety f I/O CHESTERLAND OH March 9, 2015 *Adapted frm PID Cntrl with ADwin, by Dug Rathburn, Keithley Instruments By Terry Nagy,

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

CADD Workshop. Course Design

CADD Workshop. Course Design CADD Wrkshp Curse Design 2005-2006 Curse Infrmatin Organizatin Eastern Arizna Cllege Divisin Industrial Technlgy Educatin Curse Number DRF 207 Title CADD Wrkshp Credits 1 Develped by Dee Lauritzen Lecture/Lab

More information

Wonder Tree Video Slot Introduction. How to Bet. Gamble Feature

Wonder Tree Video Slot Introduction. How to Bet. Gamble Feature Wnder Tree Vide Slt Intrductin Wnder Tree vide slt is a 5-reel, 20-line game. The slt cnsists f 11 cards - 1 f which is Wild, and 1 is Scatter. All winning cmbinatins are paid left t right, except fr the

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

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

Service Update 7. PaperStream IP (TWAIN x64) for SP Series. change history. Version Version Version

Service Update 7. PaperStream IP (TWAIN x64) for SP Series. change history. Version Version Version PaperStream IP (TWAIN x64) fr SP Series change histry Service Update 7 Versin 1.46.0.5900 Crrected issue: 1. Minr errrs have been mdified. Versin 1.46.0.5775 New feature: 1. SP-1425 is newly supprted.

More information

PowerCADDTM 5/10/2018. Drawing by James Fleming and Matt Arnold

PowerCADDTM 5/10/2018. Drawing by James Fleming and Matt Arnold PwerCADDTM Tutrial 5/10/2018 Drawing by James Fleming and Matt Arnld Hw t Read This Dcument This manual is an interactive PDF that acts in sme ways like a bk and als like a prgram, with links that will

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

DC-DC Double PWM Converter for Dimmable LED Lighting

DC-DC Double PWM Converter for Dimmable LED Lighting I J C T A, 9(16), 216, pp. 8333-8339 Internatinal Science Press DC-DC Duble PWM Cnverter fr Dimmable LED Lighting Pavankumar, Rhit Shinde and R. Gunabalan* ABSTRACT A simplebuck-bst cnverter tplgywith

More information

Nonlinear Modeling and Analysis of DC-DC Buck Converter and Comparing with Other Converters

Nonlinear Modeling and Analysis of DC-DC Buck Converter and Comparing with Other Converters Internatinal Jurnal f Engineering and Advanced Technlgy (IJEAT ISSN: 2249 8958, Vlume-4 Issue-2, December 204 Nnlinear Mdeling and Analysis f DC-DC Buck Cnverter and Cmparing with Other Cnverters Seyed

More information

3G Coverage Obligation Verification Methodology

3G Coverage Obligation Verification Methodology 3G Cverage Obligatin Verificatin Methdlgy Statement Publicatin date: 9 May 2012 Main Heading Cntents Sectin Page 1 Intrductin 1 2 Summary f apprach 2 3 Key parameters t be used in the SINR calculatin

More information

100 Super Hot Video Slot Introduction. How to Bet. Gamble Feature

100 Super Hot Video Slot Introduction. How to Bet. Gamble Feature 100 Super Ht Vide Slt Intrductin 100 Super Ht vide slt is a 5-reel, 100-line fixed game. The slt cnsists f 8 cards - 1 f which is Wild, and 1 is Scatter. All winning cmbinatins are paid left t right, except

More information

Software Engineering

Software Engineering What Is Sftware Engineering? Sftware Engineering Sftware engineering is the study and an applicatin f engineering t the, develpment, and maintenance f sftware. The applicatin f a systematic, disciplined,

More information

INTERNATIONAL JOURNAL OF ELECTRICAL ENGINEERING & TECHNOLOGY (IJEET)

INTERNATIONAL JOURNAL OF ELECTRICAL ENGINEERING & TECHNOLOGY (IJEET) INTERNATIONAL JOURNAL OF ELECTRICAL ENGINEERING & TECHNOLOGY (IJEET Internatinal Jurnal f Electrical Engineering and Technlgy (IJEET, ISSN 0976 ISSN 0976 6545(Print ISSN 0976 6553(Online Vlume 4, Issue

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

Dry Contact Sensor DCS15 User Manual

Dry Contact Sensor DCS15 User Manual Dry Cntact Sensr DCS15 User Manual Help Versin updated till firmware 404i / SP456 Cpyright 2012, AKCess Pr C., Ltd.. Intrductin / What is a Dry Cntact Sensr The Dry Cntact sensr r DCS15 is a simple cnnectin

More information

The Motorcycle Industry in Europe. L-category vehicles type approval regulation ACEM comments on draft TRL durability study

The Motorcycle Industry in Europe. L-category vehicles type approval regulation ACEM comments on draft TRL durability study L-categry vehicles type apprval regulatin ACEM cmments n draft TRL durability study 1. ACEM members welcme the pprtunity t cmment n the draft TRL durability study. Since 2004, ACEM members have supprted

More information

Switched and Sectored Beamforming 1 c Raviraj Adve,

Switched and Sectored Beamforming 1 c Raviraj Adve, Switched and Sectred Beamfrming c Raviraj Adve, 2005. rsadve@cmm.utrnt.ca Intrductin Having investigated the use f antenna arrays fr directin f arrival estimatin we nw turn t the use f arrays fr data prcessing.

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

Experiment 4 Op-Amp Circuits

Experiment 4 Op-Amp Circuits Experiment 4 Op-Amp Circuits Purpse: In this experiment, yu will learn abut peratinal amplifiers (r p-amps). Simple circuits cntaining peratinal amplifiers can be used t perfrm mathematical peratins, such

More information

Project Description Arctic Safety Center

Project Description Arctic Safety Center Prject Descriptin Arctic Safety Center Classificatin: Open Status: Final Expiry date: 2012-10-21 Page 1 f 11 Prject Descriptin Arctic Safety Center Dcument n. : Prject n.: Prject: 990020 Arctic Safety

More information

Spring 06 Assignment 3: Robot Motion, Game Theory

Spring 06 Assignment 3: Robot Motion, Game Theory 15-381 Spring 06 Assignment 3: Rbt Mtin, Game Thery Questins t Rng Yan(yanrng@cs.cmu.edu) Out: 2/21/06 Due: 3/7/06 Name: Andrew ID: Please turn in yur answers n this assignment (etra cpies can be btained

More information

Dice High Video Slot. Introduction. How to Bet. Gamble Feature

Dice High Video Slot. Introduction. How to Bet. Gamble Feature Dice High Vide Slt Intrductin Hw t Bet Gamble Feature Game Cntrls Rules Dice Feature Jackpt Cards Bnus Game Interruptins Return t Player Intrductin Dice High vide slt is a 5-reel, 20-line fixed game. The

More information

TimeLapse Photography

TimeLapse Photography TimeLapse Phtgraphy Time-lapse lets yu see the natural prgressin f time, while nt having t wait thrugh the actual length f it. Pictures are taken at regular intervals. When replayed at nrmal speed, time

More information

Project Information o Simulating Cumulus Entrainment: A Resolution Problem, or Conceptual? o Sonia Lasher-Trapp, UIUC o

Project Information o Simulating Cumulus Entrainment: A Resolution Problem, or Conceptual? o Sonia Lasher-Trapp, UIUC o Annual Reprt fr Blue Waters Allcatin: Snia Lasher-Trapp, Oct 2016 Prject Infrmatin Simulating Cumulus Entrainment: A Reslutin Prblem, r Cnceptual? Snia Lasher-Trapp, UIUC slasher@illinis.edu Executive

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

Manual Zeiss Axio Zoom.V16 microscope and ZEN 2 Pro software

Manual Zeiss Axio Zoom.V16 microscope and ZEN 2 Pro software Manual Zeiss Axi Zm.V16 micrscpe and ZEN 2 Pr sftware 15-9-2015 Fred Hartjes EMS 3 Caxial illum. Ring illum. Starting up Pwer n Actuate the knb n the EMS 3 cntrl unit Switch n the caxial illuminatin Switch

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

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

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

Documentation of the PIC32 Pin Finder

Documentation of the PIC32 Pin Finder App. Versin: 1.1.1.120 Dcument Versin: 1.0 Dcument Create date: 2009-10-16 Dcument Update: 2009-10-19 22:37 Authr: B Gärdmark Cmpany: Spectrn System Develpment AB WEB: www.spectrn.us Cpyright 2009 All

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

RiverSurveyor S5/M9 & HydroSurveyor Second Generation Power & Communications Module (PCM) Jan 23, 2014

RiverSurveyor S5/M9 & HydroSurveyor Second Generation Power & Communications Module (PCM) Jan 23, 2014 SnTek, a Xylem brand 9940 Summers Ridge Rad, San Dieg, CA 92121-3091 USA Telephne (858) 546-8327 Fax (858) 546-8150 E-mail: inquiry@sntek.cm Internet: http://www.sntek.cm RiverSurveyr S5/M9 & HydrSurveyr

More information

APPLICATION NOTE Sales & Application DEWESoft Slovenia

APPLICATION NOTE Sales & Application DEWESoft Slovenia Sales & Applicatin DEWESft Slvenia Abstract: This applicatin nte shws a measurement with DEWESft sund pwer measurement system and GRAS 67HA Hemisphere. The bject under test was a standard ntebk, the measurement

More information

PaperStream IP (TWAIN x64) change history

PaperStream IP (TWAIN x64) change history PaperStream IP (TWAIN x64) change histry Service Update 7 Versin 1.56.1 Crrected issue: 1. Fixed the prblem that scanning failed when using the scanner thrugh PaperStream IP Net. Versin 1.50.0.6382 New

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

Effective Presentations

Effective Presentations Effective Presentatins Surce: Effective Presentatins by Erin B. Lindsay URL: http://www.research.ucla.edu/era/present/sld001.htm Preparatin Effective Slides Graphics Graphs, Diagrams, and Tables Arrangement

More information

Visual & Performing Arts Curriculum Organizational Framework Subject: Art Grade Level Cluster: 3-5

Visual & Performing Arts Curriculum Organizational Framework Subject: Art Grade Level Cluster: 3-5 Visual & Perfrming Arts Curriculum Organizatinal Framewrk Subject: Art Grade Level Cluster: 3-5 BOLDED CPIs COORESPOND WITH ESSENTIAL QUESTIONS IN MODULES Mdule 1: Culture Mdule 2: Art Histry Mdule 3:

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

Internship opportunities

Internship opportunities Internship pprtunities 2018-2019 1 General Infrmatin Why is an internship valuable fr yu? In the first instance, an internship needs t be wrthwhile fr yu, the student! Everyne deserves the pprtunity t

More information

A GGP Feature Learning Algorithm

A GGP Feature Learning Algorithm A GGP Feature Learning Algrithm Mesut Kirci Nathan Sturtevant Jnathan Schaeffer This paper presents a learning algrithm fr tw-player, alternating mve GGP games. The Game Independent Feature Learning algrithm,

More information

EARLY BREAST CANCER DETECTION USING STATISTICAL PARAMETERS

EARLY BREAST CANCER DETECTION USING STATISTICAL PARAMETERS IMPACT: Internatinal Jurnal f Research in Engineering & Technlgy (IMPACT: IJRET) ISSN(E): 2321-8843; ISSN(P): 2347-4599 Vl. 2, Issue 3, Mar 2014, 31-36 Impact Jurnals EARLY BREAST CANCER DETECTION USING

More information

Data Sheet - cctvxanpr PC based 1-4 channel ANPR (Automatic Licence Number Plate Recognition)

Data Sheet - cctvxanpr PC based 1-4 channel ANPR (Automatic Licence Number Plate Recognition) Data Sheet - cctvxanpr PC based 1-4 channel ANPR (Autmatic Licence Number Plate Recgnitin) the hme f Kdicm in Main features Real time PC based recrding Neural Net ANPR system Multi user peratin Event lg

More information

POWERSLED CIRCUIT INTRODUCTION GAME COMPONENTS

POWERSLED CIRCUIT INTRODUCTION GAME COMPONENTS POWERSLED CIRCUIT WRITTEN & DESIGNED BY Kevin Smith GRAPHIC DESIGN & EDITING Daniel Kast Eric Rennie PLAYTESTING Tm Akerman Rbert Flaharty Keith Hudsn Chris McArthur Glenn Mchn Demian Rse Tm Warhurst Cpyright

More information

Application of Percents

Application of Percents Grade 7 Mathematics, Quarter 3, Unit 3.1 Applicatin f Percents Overview Number f instructinal days: 15 (1 day = 45 60 minutes) Cntent t be learned Cnvert between different frms f ratinal numbers (psitive

More information

3: Community Gathering Space

3: Community Gathering Space 3: Cmmunity Gathering Space What: 2 part spatial sequence with gathering area fr varius sized grups Entry Zne Prvide an intrductin t the area by establishing a md and character and as well as separating

More information

START UPS DO NOT HAVE TO BE DIFFICULT

START UPS DO NOT HAVE TO BE DIFFICULT Cpyright 2011 ISA. All Rights Reserved START UPS DO NOT HAVE TO BE DIFFICULT Michel Ruel 1 1 BBA Tp Cntrl Inc., Green Bay, WI, USA Keywrds: Prcess Mdel, PID Algrithm, Lp Tuning, Cntrl Strategy, Alarm Management,

More information

CUSTOMER PORTAL. Floorplan Management

CUSTOMER PORTAL. Floorplan Management CUSTOMER PORTAL Flrplan Management FLOORPLAN ANALYTICS The flrplan analytics area displays flrplans yu have uplad t the prtal (if yu haven t yet upladed a flrplan please cntact ur supprt department). Frm

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

Simplified Control Technique for Three-Phase Rectifier PFC Based on the Scott Transformer

Simplified Control Technique for Three-Phase Rectifier PFC Based on the Scott Transformer Simplified Cntrl Technique fr ThreePhase Rectifier PFC Based n the Sctt Transfrmer A.A. Badin * and. Barbi ** Federal University f Santa Catarina Pwer Electrnics nstitute P.O.Bx 5119 CEP:88040970 Flrianplis,

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

Coverage Analysis in Case of Faults of Some Satellites in Low Earth Orbit Satellite Constellations. PARK, Chan-Wang

Coverage Analysis in Case of Faults of Some Satellites in Low Earth Orbit Satellite Constellations. PARK, Chan-Wang SSC98-XII-S Cverage Analysis in Case f Faults f Sme Satellites in Lw Earth Orbit Satellite Cnstellatins University f Science and Technlgy in Lillel Cite Scientifique, Avenue Pincare B.P.69 59652. Villeneuve

More information

NanoScan v2 Readme Version 2.7. Change log. v2.7 - Added information for new product Pyro/9/5-MIR.

NanoScan v2 Readme Version 2.7. Change log. v2.7 - Added information for new product Pyro/9/5-MIR. NanScan v2 Readme Versin 2.7 Change lg v2.7 - Added infrmatin fr new prduct Pyr/9/5-MIR. v2.6 - Redesigned Messages windw. Imprved readability and ease f use. Mves almst all pp up message bxes int the

More information

Mobile Robot Obstacle Avoidance in a Computerized Travel Aid for the Blind

Mobile Robot Obstacle Avoidance in a Computerized Travel Aid for the Blind 1994 IEEE. Reprinted, with permissin, frm Prceedings f the 1994 IEEE Rbtics and Autmatin Cnference, San Dieg, Califrnia, May 8-13, 1994, pp. 2023-2029. Mbile Rbt Obstacle Avidance in a Cmputerized Travel

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS Lad with min. 5 kg 405000090 405070090 INSTALLATION INSTRUCTIONS CONTENT: 1. Imprtant safety instructins. 2. Specificatins and main dimensins. 3. Parts included. 4. Installatin. 5. Adjusting the strke

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

Network Working Group. Category: Informational Cisco Systems A. Shaikh AT&T Labs (Research) April 2005

Network Working Group. Category: Informational Cisco Systems A. Shaikh AT&T Labs (Research) April 2005 Netwrk Wrking Grup Request fr Cmments: 4062 Categry: Infrmatinal V. Manral SiNett Crp. R. White Cisc Systems A. Shaikh AT&T Labs (Research) April 2005 Status f This Mem OSPF Benchmarking Terminlgy and

More information