EE 168 Handout #32 Introduction to Digital Image Processing March 7, 2012 HOMEWORK 7 SOLUTIONS

Size: px
Start display at page:

Download "EE 168 Handout #32 Introduction to Digital Image Processing March 7, 2012 HOMEWORK 7 SOLUTIONS"

Transcription

1 EE 168 Handout #32 Intoduction to Diital Imae Pocessin Mach 7, 2012 HOMEWORK 7 SOLUTIONS Polem 1: Colo Wheels We can epesent an N x N colo imae y a thee-dimensional aay such that the fist two dimensions ae of size N each, and the thid dimension has size 3. The fist two dimensions of the aay ae used to epesent the location of pixels, while the thid is used to stoe the ensities of the thee pimay colos (ed, een, and lue). Fo instance, usin Matla notation, we can wite: a(i, j, 1) = w 1 ; a(i, j, 2) = w 2 ; a(i, j, 3) = w 3 ; This means that the elative ensities of the ed, een, lue components in the i th ow, j th column of the imae a ae w 1, w 2 and w 3, espectively. Accodinly, fo the equal-ensity colo wheel, each cicle in the colo wheel has a weiht of 1 fo only one of the thee colos and a weiht of 0 fo the othe two. By vayin the weihts, we can modify the colo values in the wheel. In the non-ovelappin eions, the chane of weihts causes only an ensity chane, while fo the ovelappin eions, a colo chane is also oseved. These esults ae shown in Fiue 1-1. Note that the RGB colo space is not the only way to epesent colo imaes. One can, altenatively, use othe colo spaces, one of them ein the HSB space. In HSB, H epesents hue, S epesents the satuation, and B epesents the ihtness. The hue dimension povides a compaison of the thee pimay colos (ed, een, and lue) and thei weihted mixtues (usin at most two of the ed, een, o lue at a time). Note that ensities ae assumed to e equal fo all colos in the hue dimension. This is illustated in Fiue 1-2. The Colo Wheel with Equal Intensities The Colo Wheel with Lowe Red Intensity The Colo Wheel with Lowe Geen Intensity The Colo Wheel with Lowe Blue Intensity Fiue 1-1: The Colo Wheel and Weihtin Colos 1

2 A Hue Map Fiue 1-2: The Hue Map Polem 2: RGB Imaes We can stetch a colo imae fo a nume of easons, one of them ein that the oveall imae contast is too low to ceate a pleasin display. The colo imae can e stetched y takin the ensity values of the imae as a efeence. The total ensity at location (n, can e computed fom the (ed), (een), and (lue) components like so: I n, m 2 n, m 2 n, m 3 2 n, m We can then stetch the individual colo ensity values of the imae to otain an imae that has a total ensity with a mean of 160 and a standad deviation of 80. We ceate this tansfomation y fist calculatin the mean and standad deviation of the oiinal imae s total ensity. Then the linea tansfomation equation fo the total ensity stetch can e applied to each of the thee colo components, esultin in a pleasin colo imae. Fiue 2-1 compaes the oiinal low-contast imae and the ensity-stetched imae. Fo this paticula imae, the oiinal imae s total ensity has a mean of 47.9 and a standad deviation of Hence, the tansfomation equations ae:

3 The oiinal low-contast imae The total-esity stetched imae Fiue 2-1: Usin the Total Intensity to stetch Colo Imaes Polem 3: False Colo Imaes We can stetch a colo imae in two diffeent ways: i) All thee colo components can e stetched usin a common linea tansfomation equation. The common equation may e otained y applyin a stetch on the total ensity values of the imae, as done in the pevious polem. Denotin the mean and the standad deviation of the total ensity imae y m and, espectively, we can otain the colo components usin the followin colo channel tansfomations, whee m and denote the desied mean and standad deviation: m m m m m m ii) Each colo component can e indepently stetched usin a diffeent linea tansfomation equation. This method will maximize the colo space, ut will not peseve the colo alance and will not epesent the tue physical colos. The output colos will now equally eveal the details contained in each colo channel. So featues oiinally hidden in minoity colos will now e enhanced. In this case, each equation is otained y applyin a stetch only on that paticula colo ensity component. Denotin the means and standad deviations of the ed, een, and lue components of the imae as m,, m,, m,, espectively, one can otain the colo components usin the followin linea tansfomations: 3

4 m m m m m m The Oiinal Imae Stetchin y a Common Tansfomation Stetchin y Indepent Tansfomations Fiue 3-1: Convolvin two ectanles of diffeent widths in space and in special-fequency domains 4

5 Polem 4: Indexed Colo We can use indexin to compess colo infomation in imaes. Fo instance, if a paticula application needs colo imaes that ae shades of only lue, then all its should e used to encode only ensities of lue, and no its should e used to code the ed and een colo components. Fiue 4-1 shows a ay scale imae and its vesion in shades of lue. The fiue also displays the imae with a diffeent colo tale that exts fom lack to white thouh shades and mixtues of een and yellow. The colo map, descied in the polem, can e fomed y: - Vayin the ensity of een fom 0 to 1 as the index inceases fom 0 to, with the ensities of ed and lue held constant at 0. - Vayin the ensity of ed fom 0 to 1 as the index inceases fom to, with the ensity of een held at a constant of 1, and the ensity of lue held at 0. - Vayin the ensity of lue fom 0 to 1 as the index inceases fom to 255, with the ensities of ed and een held constant at 1. The Oiinal B/W Imae 4 5 Fiue 4-1: The Oiinal Black & White Imae The Imae in shades of Blue The Imae usin a Colo Tale Fiue 4-2: Imae Displayed usin diffeent Colo Tales 5

6 MATLAB code: M=256; Polem 1: Colo Wheels cicle=ones(m+1,m+1); % fom a cicle of diamete M fo i=1:(m+1) fo j=1:(m+1) if((sqt((i-((m/2)+1))^2+(j-((m/2)+1))^2))>m/2) cicle(i,j)=0; % each of the thee dimensions is fo a paticula colo component a=zeos(,,3); % loop thouh vaious weihts on the colo ensities w1 = [ ]; w2 = [ ]; w3 = [ ]; titles = {'Equal Intensities'; 'Lowe Red Intensity'; 'Lowe Geen Intensity'; 'Lowe Blue Intensity'}; count = 1; fiue; fo ind=1:lenth(w1), fo i=1:(m+1) fo j=1:(m+1) a(i+,j+,1)=w1(ind)*cicle(i,j); a(i+,j+,2)=w2(ind)*cicle(i,j); a(i+,j+,3)=w3(ind)*cicle(i,j); suplot(2,2,count); imaesc(a); axis('imae') title(spf('the Colo Wheel with %s', cha(titles(ind)))) count = count+1; % The hue map wheel_adius = 75; fo i=-wheel_adius:wheel_adius fo j=-wheel_adius:wheel_adius [v1,v2]=cat2pol(i,j); a(i+76,j+76)=v1; %theta (i+76,j+76)=ound(v2); %adius % hue vaies with the anle of otation wheel_diam = wheel_adius*2; %= m1 = zeos(wheel_diam,wheel_dia; fo i=1:wheel_diam fo j=1:wheel_diam % nomalize theta to e etween 0 and 1 % all values on wheel with same theta ae set to the same value, theta m1(i,j)=(1/(2*pi))*(a(i,j)+pi); % convesion to the space m2 = zeos(wheel_diam,wheel_diam,3); fo i=1:wheel_diam fo j=1:wheel_diam if((i,j)<wheel_adius), %only fill in wheel cicle 6

7 % set satuation and ensity to 1 % flip hue ove x-axis so that ed (theta=0) is at top of wheel m2(i,j,:)=hsv2([m1(i,wheel_diam+1-j),1,1]); fiue; imaesc(m2); axis('imae'); title('a Hue Map') Polem 2: RGB Imaes nows = 435; ncols = 580; % ead the imaes f=fopen('la7po2',''); a_ed=fead(f,[ncols nows],'u8'); a_ed=a_ed'; f=fopen('la7po2',''); a_een=fead(f,[ncols nows],'u8'); a_een=a_een'; f=fopen('la7po2',''); a_lue=fead(f,[ncols nows],'u8'); a_lue=a_lue'; a_oi(:,:,1)=a_ed; a_oi(:,:,2)=a_een; a_oi(:,:,3)=a_lue; % compute imae ensity i=(((a_ed.^2)+(a_een.^2)+(a_lue.^2))/3).^.5; % compute the ensity mean and standad deviation fo the stetch mean_i=mean(mean(i)) va_i=(mean((eshape(i,ncols*nows,1)-mean_i).^2)); _i=va_i^.5 % stetch each colo component usin a common tansfomation ased on the total ensity mean_desied = 160; _desied = 80; a = zeos(nows, ncols, 3); a(:,:,1)=(_desied/_i)*(a_ed-mean_i)+mean_desied; a(:,:,2)=(_desied/_i)*(a_een-mean_i)+mean_desied; a(:,:,3)=(_desied/_i)*(a_lue-mean_i)+mean_desied; % check the ensity mean and standad deviation afte the stetch i=(((a(:,:,1).^2)+(a(:,:,2).^2)+(a(:,:,3).^2))/3).^.5; mean_i=mean(mean(i)) va_i=(mean((eshape(i,ncols*nows,1)-mean_i).^2)); _i=va_i^.5 fiue; suplot(1,2,1); imaesc(u8(a_oi)); axis('imae') title('the oiinal low-contast imae') suplot(1,2,2); imaesc(u8(a)); axis('imae') title('the total-esity stetched imae') Polem 3: False Colo Imaes % ead the imaes f=fopen('la7po3',''); 7

8 a_ed=fead(f,[ ],'u8'); a_ed=a_ed'; f=fopen('la7po3',''); a_een=fead(f,[ ],'u8'); a_een=a_een'; f=fopen('la7po3',''); a_lue=fead(f,[ ],'u8'); a_lue=a_lue'; a_oi(:,:,1)=a_ed; a_oi(:,:,2)=a_een; a_oi(:,:,3)=a_lue; % compute the ensity i=(((a_ed.^2)+(a_een.^2)+(a_lue.^2))/3).^.5; % compute the ensity mean and standad deviation fo the stetch mean_i=mean(mean(i)) va_i=(mean((eshape(i,1024*1024,1)-mean_i).^2)); _i=va_i^.5; mean_desied = 160; _desied = 80; % stetch each colo component usin a common tansfomation a(:,:,1)=(_desied/_i)*(a_ed-mean_i)+mean_desied; a(:,:,2)=(_desied/_i)*(a_een-mean_i)+mean_desied; a(:,:,3)=(_desied/_i)*(a_lue-mean_i)+mean_desied; mean_ed=mean(mean(a_ed)) va_ed=(mean((eshape(a_ed,1024*1024,1)-mean_ed).^2)) _ed=va_ed^.5; mean_een=mean(mean(a_een)) va_een=(mean((eshape(a_een,1024*1024,1)-mean_een).^2)) _een=va_een^.5; mean_lue=mean(mean(a_lue)) va_lue=(mean((eshape(a_lue,1024*1024,1)-mean_lue).^2)) _lue=va_lue^.5; % stetch each colo component usin a diffeent tansfomation (:,:,1)=(_desied/_ed)*(a_ed-mean_ed)+mean_desied; (:,:,2)=(_desied/_een)*(a_een-mean_een)+mean_desied; (:,:,3)=(_desied/_lue)*(a_lue-mean_lue)+mean_desied; fiue; suplot(1,2,1); imaesc(u8(a_oi)); axis('imae') title('the Oiinal Imae') fiue; suplot(1,2,1); imaesc(u8(a)); axis('imae') title('stetchin y a Common Tansfomation') suplot(1,2,2); imaesc(u8()); axis('imae') title('stetchin y Indepent Tansfomations') Polem 4: Indexed Colo nows = 435; ncols = 580; f=fopen('la7po4data',''); im_oi=fead(f,[ncols nows],'u8'); im_oi=im_oi'; im_luish(1:nows,1:ncols,1)=zeos(nows,ncols); im_luish(1:nows,1:ncols,2)=zeos(nows,ncols); im_luish(1:nows,1:ncols,3)=im_oi/255; im_=zeos(nows,ncols,3); % fom a colo tale 8

9 fo i=1:nows, fo j=1:ncols, if im_oi(i,j)<= im_(i,j,2)=(1/)*im_oi(i,j); if (im_oi(i,j)>)&(im_oi(i,j)<=) im_(i,j,1)=(1/)*(im_oi(i,j)-); im_(i,j,2)=1; if (im_oi(i,j)>=) im_(i,j,1)=1; im_(i,j,2)=1; im_(i,j,3)=(1/55)*(im_oi(i,j)-); fiue; colomap(ay); imaesc(u8(im_oi)); axis('imae') title('the Oiinal B/W Imae') fiue; suplot(1,2,1); imaesc((im_luish)); axis('imae') title('the Imae in shades of Blue') suplot(1,2,2); imaesc((im_)); axis('imae') title('the Imae usin a Colo Tale'); 9

University of Waterloo CS240 Winter 2018 Assignment 4 Due Date: Wednesday, Mar. 14th, at 5pm

University of Waterloo CS240 Winter 2018 Assignment 4 Due Date: Wednesday, Mar. 14th, at 5pm Univesit of Wateloo CS Winte Assinment Due Date: Wednesda, Ma. th, at pm vesion: -- : Please ead the uidelines on sumissions: http://.student.cs.uateloo.ca/ ~cs//uidelines.pdf. This assinment contains

More information

(a, b) x y r. For this problem, is a point in the - coordinate plane and is a positive number.

(a, b) x y r. For this problem, is a point in the - coordinate plane and is a positive number. Illustative G-C Simila cicles Alignments to Content Standads: G-C.A. Task (a, b) x y Fo this poblem, is a point in the - coodinate plane and is a positive numbe. a. Using a tanslation and a dilation, show

More information

Lecture # 04. Image Enhancement in Spatial Domain

Lecture # 04. Image Enhancement in Spatial Domain Digital Image Pocessing CP-7008 Lectue # 04 Image Enhancement in Spatial Domain Fall 2011 2 domains Spatial Domain : (image plane) Techniques ae based on diect manipulation of pixels in an image Fequency

More information

Statistics of Images. Ioannis Rekleitis

Statistics of Images. Ioannis Rekleitis Statistics of Images Ioannis Rekleitis Some Basic Intensity Tansfoma2on Func2ons Thesholding Logistic function Log tansfomation Powe-law (Gamma coection) Piecewise-linea tansfomation Histogam pocessing

More information

a Not yet implemented in current version SPARK: Research Kit Pointer Analysis Parameters Soot Pointer analysis. Objectives

a Not yet implemented in current version SPARK: Research Kit Pointer Analysis Parameters Soot Pointer analysis. Objectives SPARK: Soot Reseach Kit Ondřej Lhoták Objectives Spak is a modula toolkit fo flow-insensitive may points-to analyses fo Java, which enables expeimentation with: vaious paametes of pointe analyses which

More information

Journal of World s Electrical Engineering and Technology J. World. Elect. Eng. Tech. 1(1): 12-16, 2012

Journal of World s Electrical Engineering and Technology J. World. Elect. Eng. Tech. 1(1): 12-16, 2012 2011, Scienceline Publication www.science-line.com Jounal of Wold s Electical Engineeing and Technology J. Wold. Elect. Eng. Tech. 1(1): 12-16, 2012 JWEET An Efficient Algoithm fo Lip Segmentation in Colo

More information

Two Illuminant Estimation and User Correction Preference

Two Illuminant Estimation and User Correction Preference Two Illuminant Estimation and Use Coection Pefeence Donlian Chen 1, Abdelahman Kamel 1, Bian Pice 2 Scott Cohen 2 Michael S. Bown 1 1 National Univesity of Sinapoe 2 Adobe Reseach donlian.chen@u.nus.edu

More information

Image Enhancement in the Spatial Domain. Spatial Domain

Image Enhancement in the Spatial Domain. Spatial Domain 8-- Spatial Domain Image Enhancement in the Spatial Domain What is spatial domain The space whee all pixels fom an image In spatial domain we can epesent an image by f( whee x and y ae coodinates along

More information

Coordinate Systems. Ioannis Rekleitis

Coordinate Systems. Ioannis Rekleitis Coodinate Systems Ioannis ekleitis Position epesentation Position epesentation is: P p p p x y z P CS-417 Intoduction to obotics and Intelligent Systems Oientation epesentations Descibes the otation of

More information

1 N-Queen Problem as a CSP (23 points + 5 bonus)

1 N-Queen Problem as a CSP (23 points + 5 bonus) Spin Semeste, 2011 CSCE 421/821: Foundations of Constaint Pocessin B.Y. Chouei Homewok 4 Assined: Monda, Fe 28, 2011 Due: Monda, Ma 7, 2011 Total value: 100 points (+ 5 onus points). Penalt of 20 points

More information

A Novel Automatic White Balance Method For Digital Still Cameras

A Novel Automatic White Balance Method For Digital Still Cameras A Novel Automatic White Balance Method Fo Digital Still Cameas Ching-Chih Weng 1, Home Chen 1,2, and Chiou-Shann Fuh 3 Depatment of Electical Engineeing, 2 3 Gaduate Institute of Communication Engineeing

More information

Topic -3 Image Enhancement

Topic -3 Image Enhancement Topic -3 Image Enhancement (Pat 1) DIP: Details Digital Image Pocessing Digital Image Chaacteistics Spatial Spectal Gay-level Histogam DFT DCT Pe-Pocessing Enhancement Restoation Point Pocessing Masking

More information

1 N-Queen Problem as a CSP (23 points + 5 bonus)

1 N-Queen Problem as a CSP (23 points + 5 bonus) Fall Semeste, 2014 CSCE 421/821: Foundations of Constaint Pocessin B.Y. Chouei Homewok 5 Assined: Wednesda, Octoe 29th, 2014 Due: Wednesda, Nov 12th, 2014 (Wednesda, Nov 5th, 2014 poess epot due). Total

More information

Efficient ACC using Binary Coding Stream for Color Descriptor

Efficient ACC using Binary Coding Stream for Color Descriptor Effient ACC usin Binay Codin Steam fo Colo Despto Anucha Tunkasthan Depatment of Compute Technoloy, Faculty of Sence and Technoloy, RMUTT, Thailand anucha_t@mutt.ac.th Astact Auto colo coelation (ACC)

More information

Gravitational Shift for Beginners

Gravitational Shift for Beginners Gavitational Shift fo Beginnes This pape, which I wote in 26, fomulates the equations fo gavitational shifts fom the elativistic famewok of special elativity. Fist I deive the fomulas fo the gavitational

More information

A Memory Efficient Array Architecture for Real-Time Motion Estimation

A Memory Efficient Array Architecture for Real-Time Motion Estimation A Memoy Efficient Aay Achitectue fo Real-Time Motion Estimation Vasily G. Moshnyaga and Keikichi Tamau Depatment of Electonics & Communication, Kyoto Univesity Sakyo-ku, Yoshida-Honmachi, Kyoto 66-1, JAPAN

More information

COMPARISON OF THREE COLOUR SPACES IN SKIN DETECTION. Chelsia Amy Doukim, Jamal Ahmed Dargham & Ali Chekima

COMPARISON OF THREE COLOUR SPACES IN SKIN DETECTION. Chelsia Amy Doukim, Jamal Ahmed Dargham & Ali Chekima ONEO SCIENCE 24: MACH 2009 COMPAISON OF THEE COLOU SPACES IN SKIN DETECTION School of Enineein & Infomation Technolo Univesiti Malasia Saah 88999 Kota Kinaalu Saah Malasia ASTACT. Skin detection is used

More information

Satellite Image Analysis

Satellite Image Analysis Satellite Image Analysis Chistian Melsheime Apil 25, 2012 The lab on satellite image analysis deals with a vey typical application, the extaction of land use infomation. Stating point is an image ecoded

More information

User Specified non-bonded potentials in gromacs

User Specified non-bonded potentials in gromacs Use Specified non-bonded potentials in gomacs Apil 8, 2010 1 Intoduction On fist appeaances gomacs, unlike MD codes like LAMMPS o DL POLY, appeas to have vey little flexibility with egads to the fom of

More information

4.2. Co-terminal and Related Angles. Investigate

4.2. Co-terminal and Related Angles. Investigate .2 Co-teminal and Related Angles Tigonometic atios can be used to model quantities such as

More information

Controlled Information Maximization for SOM Knowledge Induced Learning

Controlled Information Maximization for SOM Knowledge Induced Learning 3 Int'l Conf. Atificial Intelligence ICAI'5 Contolled Infomation Maximization fo SOM Knowledge Induced Leaning Ryotao Kamimua IT Education Cente and Gaduate School of Science and Technology, Tokai Univeisity

More information

A Two-stage and Parameter-free Binarization Method for Degraded Document Images

A Two-stage and Parameter-free Binarization Method for Degraded Document Images A Two-stage and Paamete-fee Binaization Method fo Degaded Document Images Yung-Hsiang Chiu 1, Kuo-Liang Chung 1, Yong-Huai Huang 2, Wei-Ning Yang 3, Chi-Huang Liao 4 1 Depatment of Compute Science and

More information

Massachusetts Institute of Technology Department of Mechanical Engineering

Massachusetts Institute of Technology Department of Mechanical Engineering cm cm Poblem Massachusetts Institute of echnolog Depatment of Mechanical Engineeing. Intoduction to obotics Sample Poblems and Solutions fo the Mid-em Exam Figue shows a obotic vehicle having two poweed

More information

Survey of Various Image Enhancement Techniques in Spatial Domain Using MATLAB

Survey of Various Image Enhancement Techniques in Spatial Domain Using MATLAB Suvey of Vaious Image Enhancement Techniques in Spatial Domain Using MATLAB Shailenda Singh Negi M.Tech Schola G. B. Pant Engineeing College, Paui Gahwal Uttaahand, India- 46194 ABSTRACT Image Enhancement

More information

Detection and Recognition of Alert Traffic Signs

Detection and Recognition of Alert Traffic Signs Detection and Recognition of Alet Taffic Signs Chia-Hsiung Chen, Macus Chen, and Tianshi Gao 1 Stanfod Univesity Stanfod, CA 9305 {echchen, macuscc, tianshig}@stanfod.edu Abstact Taffic signs povide dives

More information

17/5/2009. Introduction

17/5/2009. Introduction 7/5/9 Steeo Imaging Intoduction Eample of Human Vision Peception of Depth fom Left and ight eye images Diffeence in elative position of object in left and ight eyes. Depth infomation in the views?? 7/5/9

More information

ISyE 4256 Industrial Robotic Applications

ISyE 4256 Industrial Robotic Applications ISyE 456 Industial Robotic Applications Quiz # Oct. 9, 998 Name This is a closed book, closed notes exam. Show wok fo poblem questions ) ( pts) Please cicle one choice fo each item. a) In an application,

More information

CS 450: COMPUTER GRAPHICS RASTERIZING CONICS SPRING 2016 DR. MICHAEL J. REALE

CS 450: COMPUTER GRAPHICS RASTERIZING CONICS SPRING 2016 DR. MICHAEL J. REALE CS 45: COMPUTER GRAPHICS RASTERIZING CONICS SPRING 6 DR. MICHAEL J. REALE RASTERIZING CURVES OTHER THAN LINES When dealing with othe inds of cuves, we can daw it in one of the following was: Use elicit

More information

High Performance Computing on GPU for Electromagnetic Logging

High Performance Computing on GPU for Electromagnetic Logging Intenational Confeence "Paallel and Distiuted Computing Systems" High Pefomance Computing on GPU fo lectomagnetic Logging Glinskikh V.N. Kontoovich A.. pov M.I. Tofimuk Institute of Petoleum Geology and

More information

t [ Background removed

t [ Background removed HANDS-ON > HOE1 Taining 1 Pictues You decide to ceate a memoies slide show fo you siste and he husband, who wee ecently maied. You include thei high school Sweetheat Ball image, engagement and wedding

More information

Module 6 STILL IMAGE COMPRESSION STANDARDS

Module 6 STILL IMAGE COMPRESSION STANDARDS Module 6 STILL IMAE COMPRESSION STANDARDS Lesson 17 JPE-2000 Achitectue and Featues Instuctional Objectives At the end of this lesson, the students should be able to: 1. State the shotcomings of JPE standad.

More information

SORTING IN SPACE HANAN SAMET

SORTING IN SPACE HANAN SAMET SORTING IN SPACE HANAN SAMET COMPUTER SCIENCE DEPARTMENT AND CENTER FOR AUTOMATION RESEARCH AND INSTITUTE FOR ADVANCED COMPUTER STUDIES UNIVERSITY OF MARYLAND COLLEGE PARK, MARYLAND 074-4 USA e mail: hjs@cs.umd.edu

More information

A Mathematical Implementation of a Global Human Walking Model with Real-Time Kinematic Personification by Boulic, Thalmann and Thalmann.

A Mathematical Implementation of a Global Human Walking Model with Real-Time Kinematic Personification by Boulic, Thalmann and Thalmann. A Mathematical Implementation of a Global Human Walking Model with Real-Time Kinematic Pesonification by Boulic, Thalmann and Thalmann. Mashall Badley National Cente fo Physical Acoustics Univesity of

More information

Cardiac C-Arm CT. SNR Enhancement by Combining Multiple Retrospectively Motion Corrected FDK-Like Reconstructions

Cardiac C-Arm CT. SNR Enhancement by Combining Multiple Retrospectively Motion Corrected FDK-Like Reconstructions Cadiac C-Am CT SNR Enhancement by Combining Multiple Retospectively Motion Coected FDK-Like Reconstuctions M. Pümme 1, L. Wigstöm 2,3, R. Fahig 2, G. Lauitsch 4, J. Honegge 1 1 Institute of Patten Recognition,

More information

A ROI Focusing Mechanism for Digital Cameras

A ROI Focusing Mechanism for Digital Cameras A ROI Focusing Mechanism fo Digital Cameas Chu-Hui Lee, Meng-Feng Lin, Chun-Ming Huang, and Chun-Wei Hsu Abstact With the development and application of digital technologies, the digital camea is moe popula

More information

Color Correction Using 3D Multiview Geometry

Color Correction Using 3D Multiview Geometry Colo Coection Using 3D Multiview Geomety Dong-Won Shin and Yo-Sung Ho Gwangju Institute of Science and Technology (GIST) 13 Cheomdan-gwagio, Buk-ku, Gwangju 500-71, Republic of Koea ABSTRACT Recently,

More information

A Shape-preserving Affine Takagi-Sugeno Model Based on a Piecewise Constant Nonuniform Fuzzification Transform

A Shape-preserving Affine Takagi-Sugeno Model Based on a Piecewise Constant Nonuniform Fuzzification Transform A Shape-peseving Affine Takagi-Sugeno Model Based on a Piecewise Constant Nonunifom Fuzzification Tansfom Felipe Fenández, Julio Gutiéez, Juan Calos Cespo and Gacián Tiviño Dep. Tecnología Fotónica, Facultad

More information

Directional Stiffness of Electronic Component Lead

Directional Stiffness of Electronic Component Lead Diectional Stiffness of Electonic Component Lead Chang H. Kim Califonia State Univesit, Long Beach Depatment of Mechanical and Aeospace Engineeing 150 Bellflowe Boulevad Long Beach, CA 90840-830, USA Abstact

More information

5. Geometric Transformations and Projections

5. Geometric Transformations and Projections 5. Geometic Tansfomations and ojections 5. Tanslations and Rotations a) Tanslation d d d d d d d d b) Scaling s s s s c) Reflection (about - - lane) d) Rotation about Ais ( ) ( ) CCW 5.. Homogeneous Repesentation

More information

DISTRIBUTION MIXTURES

DISTRIBUTION MIXTURES Application Example 7 DISTRIBUTION MIXTURES One fequently deals with andom vaiables the distibution of which depends on vaious factos. One example is the distibution of atmospheic paametes such as wind

More information

Improved Fourier-transform profilometry

Improved Fourier-transform profilometry Impoved Fouie-tansfom pofilomety Xianfu Mao, Wenjing Chen, and Xianyu Su An impoved optical geomety of the pojected-finge pofilomety technique, in which the exit pupil of the pojecting lens and the entance

More information

BLUEPRINTS. Getting Ready. The Activity. Overview. Introducing

BLUEPRINTS. Getting Ready. The Activity. Overview. Introducing BLUEPRINTS GEOMETRY LOGIC Satial visualization Tansfomational eomety Gettin Reay What You ll Nee Cuisenaie Ros, 1 set e ai 1-centimete i ae, ae 99 Tansaent tae an/o lue sticks 3" x 5" cas onto which 1-centimete

More information

5 4 THE BERNOULLI EQUATION

5 4 THE BERNOULLI EQUATION 185 CHATER 5 the suounding ai). The fictional wok tem w fiction is often expessed as e loss to epesent the loss (convesion) of mechanical into themal. Fo the idealied case of fictionless motion, the last

More information

SURVEY OF VARIOUS IMAGE ENHANCEMENT TECHNIQUES IN SPATIAL DOMAIN USING MATLAB

SURVEY OF VARIOUS IMAGE ENHANCEMENT TECHNIQUES IN SPATIAL DOMAIN USING MATLAB Intenational Jounal of Compute Applications (IJCA) (0975 8887) Intenational Confeence on Advances in Compute Engineeing & Applications (ICACEA-014) at IMSEC, GZB SURVEY OF VARIOUS IMAGE ENHANCEMENT TECHNIQUES

More information

A Consistent, User Friendly Interface for Running a Variety of Underwater Acoustic Propagation Codes

A Consistent, User Friendly Interface for Running a Variety of Underwater Acoustic Propagation Codes Poceedings of ACOUSTICS 6 - Novembe 6, Chistchuch, New Zealand A Consistent, Use Fiendly Inteface fo Running a Vaiety of Undewate Acoustic Popagation Codes Alec J Duncan, Amos L Maggi Cente fo Maine Science

More information

ISSUES IN SPATIAL DATABASES AND GEOGRAPHIC INFORMATION SYSTEMS (GIS) HANAN SAMET

ISSUES IN SPATIAL DATABASES AND GEOGRAPHIC INFORMATION SYSTEMS (GIS) HANAN SAMET ISSUES IN SPATIAL DATABASES AND GEOGRAPHIC INFORMATION SYSTEMS (GIS) HANAN SAMET COMPUTER SCIENCE DEPARTMENT AND CENTER FOR AUTOMATION RESEARCH AND INSTITUTE FOR ADVANCED COMPUTER STUDIES UNIVERSITY OF

More information

Keywords: multibody simulation, wheel-rail contact, real time simulations

Keywords: multibody simulation, wheel-rail contact, real time simulations Detemination of wheel/ail contact points in the simulation of a ailwa vehicle dnamics Ju Auciello, Stefano Falomi, Monica Malvei, Enico Meli, Paolo Toni Depatment of Enegetics S. Stecco, Univesit of Floence,

More information

HISTOGRAMS are an important statistic reflecting the

HISTOGRAMS are an important statistic reflecting the JOURNAL OF L A T E X CLASS FILES, VOL. 14, NO. 8, AUGUST 2015 1 D 2 HistoSketch: Disciminative and Dynamic Similaity-Peseving Sketching of Steaming Histogams Dingqi Yang, Bin Li, Laua Rettig, and Philippe

More information

Approximating Euclidean Distance Transform with Simple Operations in Cellular Processor Arrays

Approximating Euclidean Distance Transform with Simple Operations in Cellular Processor Arrays 00 th Intenational Wokshop on Cellula Nanoscale Netwoks and thei Applications (CNNA) Appoximating Euclidean Distance Tansfom with Simple Opeations in Cellula Pocesso Aas Samad Razmjooei and Piot Dudek

More information

Collaborative Filtering & Content-Based Recommending. CS 293S. T. Yang Slides based on R. Mooney at UT Austin

Collaborative Filtering & Content-Based Recommending. CS 293S. T. Yang Slides based on R. Mooney at UT Austin ollaboative Filteing & ontent-based Recommending S 293S. T. Yang Slides based on R. Mooney at UT Astin 1 Recommendation Systems Systems fo ecommending items (e.g. books, movies, msic, web pages, newsgop

More information

arxiv: v5 [cs.cv] 29 Sep 2018

arxiv: v5 [cs.cv] 29 Sep 2018 Bi-Real Net: Enhancing the Pefomance of 1-it CNNs With Impoved Repesentational Capaility and Advanced Taining Algoithm axiv:1808.00278v5 [cs.cv] 29 Sep 2018 Zechun Liu 1, Baoyuan Wu 2, Wenhan Luo 2, Xin

More information

Elastohydrodynamic Lubrication Analysis of Journal Bearings Using CAD

Elastohydrodynamic Lubrication Analysis of Journal Bearings Using CAD The 3d Intenational Confeence on Design Engineeing and Science, ICDES 1 Pilsen, Czech Repulic, August 31 Septeme 3, 1 Elastohydodynamic Luication Analysis of Jounal Beaings Using CAD Toshihio OZASA *1,

More information

IP Network Design by Modified Branch Exchange Method

IP Network Design by Modified Branch Exchange Method Received: June 7, 207 98 IP Netwok Design by Modified Banch Method Kaiat Jaoenat Natchamol Sichumoenattana 2* Faculty of Engineeing at Kamphaeng Saen, Kasetsat Univesity, Thailand 2 Faculty of Management

More information

An Extension to the Local Binary Patterns for Image Retrieval

An Extension to the Local Binary Patterns for Image Retrieval , pp.81-85 http://x.oi.og/10.14257/astl.2014.45.16 An Extension to the Local Binay Pattens fo Image Retieval Zhize Wu, Yu Xia, Shouhong Wan School of Compute Science an Technology, Univesity of Science

More information

GARBAGE COLLECTION METHODS. Hanan Samet

GARBAGE COLLECTION METHODS. Hanan Samet gc0 GARBAGE COLLECTION METHODS Hanan Samet Compute Science Depatment and Cente fo Automation Reseach and Institute fo Advanced Compute Studies Univesity of Mayland College Pak, Mayland 07 e-mail: hjs@umiacs.umd.edu

More information

RANDOM IRREGULAR BLOCK-HIERARCHICAL NETWORKS: ALGORITHMS FOR COMPUTATION OF MAIN PROPERTIES

RANDOM IRREGULAR BLOCK-HIERARCHICAL NETWORKS: ALGORITHMS FOR COMPUTATION OF MAIN PROPERTIES RANDOM IRREGULAR BLOCK-HIERARCHICAL NETWORKS: ALGORITHMS FOR COMPUTATION OF MAIN PROPERTIES Svetlana Avetisyan Mikayel Samvelyan* Matun Kaapetyan Yeevan State Univesity Abstact In this pape, the class

More information

Lecture 9: Other Applications of CNNs

Lecture 9: Other Applications of CNNs Applications of Convolutional Neual Netwoks CSED703R: Deep Leaning fo Visual Recognition (2016S) Lectue 9: Othe Applications of CNNs Bohyung Han Compute Vision Lab. bhhan@postech.ac.k Face ecognition and

More information

ADDING REALISM TO SOURCE CHARACTERIZATION USING A GENETIC ALGORITHM

ADDING REALISM TO SOURCE CHARACTERIZATION USING A GENETIC ALGORITHM ADDING REALISM TO SOURCE CHARACTERIZATION USING A GENETIC ALGORITHM Luna M. Rodiguez*, Sue Ellen Haupt, and Geoge S. Young Depatment of Meteoology and Applied Reseach Laboatoy The Pennsylvania State Univesity,

More information

2. PROPELLER GEOMETRY

2. PROPELLER GEOMETRY a) Fames of Refeence 2. PROPELLER GEOMETRY 10 th Intenational Towing Tank Committee (ITTC) initiated the pepaation of a dictionay and nomenclatue of ship hydodynamic tems and this wok was completed in

More information

Frequency Domain Approach for Face Recognition Using Optical Vanderlugt Filters

Frequency Domain Approach for Face Recognition Using Optical Vanderlugt Filters Optics and Photonics Jounal, 016, 6, 94-100 Published Online August 016 in SciRes. http://www.scip.og/jounal/opj http://dx.doi.og/10.436/opj.016.68b016 Fequency Domain Appoach fo Face Recognition Using

More information

Collision Detection with Swept Spheres and Ellipsoids

Collision Detection with Swept Spheres and Ellipsoids Collision etection with Swet Shees and Ellisoids Joit Rouwé joit@games.lostbos.com Souce code: htt://www.thee4.demon.nl/swetellisoid/swetellisoid.zi. Intoduction Toda most games use conex olgons fo collision

More information

Illumination methods for optical wear detection

Illumination methods for optical wear detection Illumination methods fo optical wea detection 1 J. Zhang, 2 P.P.L.Regtien 1 VIMEC Applied Vision Technology, Coy 43, 5653 LC Eindhoven, The Nethelands Email: jianbo.zhang@gmail.com 2 Faculty Electical

More information

AUTOMATED LOCATION OF ICE REGIONS IN RADARSAT SAR IMAGERY

AUTOMATED LOCATION OF ICE REGIONS IN RADARSAT SAR IMAGERY AUTOMATED LOCATION OF ICE REGIONS IN RADARSAT SAR IMAGERY Chistophe Waceman (1), William G. Pichel (2), Pablo Clement-Colón (2) (1) Geneal Dynamics Advanced Infomation Systems, P.O. Box 134008 Ann Abo

More information

COLOR EDGE DETECTION IN RGB USING JOINTLY EUCLIDEAN DISTANCE AND VECTOR ANGLE

COLOR EDGE DETECTION IN RGB USING JOINTLY EUCLIDEAN DISTANCE AND VECTOR ANGLE COLOR EDGE DETECTION IN RGB USING JOINTLY EUCLIDEAN DISTANCE AND VECTOR ANGLE Slawo Wesolkowski Systems Design Engineeing Univesity of Wateloo Wateloo (Ont.), Canada, NL 3G s.wesolkowski@ieee.og Ed Jenigan

More information

Pipes, connections, channels and multiplexors

Pipes, connections, channels and multiplexors Pipes, connections, channels and multiplexos Fancisco J. Ballesteos ABSTRACT Channels in the style of CSP ae a poeful abstaction. The ae close to pipes and connections used to inteconnect system and netok

More information

Three-Dimensional Aerodynamic Design Optimization of a Turbine Blade by Using an Adjoint Method

Three-Dimensional Aerodynamic Design Optimization of a Turbine Blade by Using an Adjoint Method Jiaqi Luo e-mail: jiaqil@uci.edu Juntao Xiong Feng Liu e-mail: fliu@uci.edu Depatment of Mechanical and Aeospace Engineeing, Univesity of Califonia, Ivine, Ivine, CA 92697-3975 Ivan McBean Alstom Powe

More information

Lecture Topics ECE 341. Lecture # 12. Control Signals. Control Signals for Datapath. Basic Processing Unit. Pipelining

Lecture Topics ECE 341. Lecture # 12. Control Signals. Control Signals for Datapath. Basic Processing Unit. Pipelining EE 341 Lectue # 12 Instucto: Zeshan hishti zeshan@ece.pdx.edu Novembe 10, 2014 Potland State Univesity asic Pocessing Unit ontol Signals Hadwied ontol Datapath contol signals Dealing with memoy delay Pipelining

More information

SOCIAL COMPUTING: AN INTELLIGENT AND RESPONSIVE SYSTEM

SOCIAL COMPUTING: AN INTELLIGENT AND RESPONSIVE SYSTEM SOCIAL COMPUTING: AN INTELLIGENT AND RESPONSIVE SYSTEM Dev Rishi Tekiwal, Undegaduate Student Akapava De, Undegaduate Student Ezhilmaan D, Assistant Pofesso School of Computing Science and Engineeing,

More information

Any modern computer system will incorporate (at least) two levels of storage:

Any modern computer system will incorporate (at least) two levels of storage: 1 Any moden compute system will incopoate (at least) two levels of stoage: pimay stoage: andom access memoy (RAM) typical capacity 32MB to 1GB cost pe MB $3. typical access time 5ns to 6ns bust tansfe

More information

XFVHDL: A Tool for the Synthesis of Fuzzy Logic Controllers

XFVHDL: A Tool for the Synthesis of Fuzzy Logic Controllers XFVHDL: A Tool fo the Synthesis of Fuzzy Logic Contolles E. Lago, C. J. Jiménez, D. R. López, S. Sánchez-Solano and A. Baiga Instituto de Micoelectónica de Sevilla. Cento Nacional de Micoelectónica, Edificio

More information

Prof. Feng Liu. Fall /17/2016

Prof. Feng Liu. Fall /17/2016 Pof. Feng Liu Fall 26 http://www.cs.pdx.edu/~fliu/couses/cs447/ /7/26 Last time Compositing NPR 3D Gaphics Toolkits Tansfomations 2 Today 3D Tansfomations The Viewing Pipeline Mid-tem: in class, Nov. 2

More information

Conservation Law of Centrifugal Force and Mechanism of Energy Transfer Caused in Turbomachinery

Conservation Law of Centrifugal Force and Mechanism of Energy Transfer Caused in Turbomachinery Poceedings of the 4th WSEAS Intenational Confeence on luid Mechanics and Aeodynamics, Elounda, Geece, August 1-3, 006 (pp337-34) Consevation Law of Centifugal oce and Mechanism of Enegy Tansfe Caused in

More information

What is a Radian? The side that remains fixed is called the initial side

What is a Radian? The side that remains fixed is called the initial side What is a Radian? Befoe we begin ou investigation of a adian let us fist establish a definition of an angle and eview some impotant concepts fom geomety. Definition of an Angle: A union of two ays with

More information

CALCULUS III Surface Integrals. Paul Dawkins

CALCULUS III Surface Integrals. Paul Dawkins CALCULU III uface Integals Paul awkins Table of Contents Peface... ii uface Integals... 3 Intoduction... 3 Paametic ufaces... 4 uface Integals... uface Integals of Vecto Fields... 9 tokes Theoem... 9 ivegence

More information

Obstacle Avoidance of Autonomous Mobile Robot using Stereo Vision Sensor

Obstacle Avoidance of Autonomous Mobile Robot using Stereo Vision Sensor Obstacle Avoidance of Autonomous Mobile Robot using Steeo Vision Senso Masako Kumano Akihisa Ohya Shin ichi Yuta Intelligent Robot Laboatoy Univesity of Tsukuba, Ibaaki, 35-8573 Japan E-mail: {masako,

More information

Comparisons of Transient Analytical Methods for Determining Hydraulic Conductivity Using Disc Permeameters

Comparisons of Transient Analytical Methods for Determining Hydraulic Conductivity Using Disc Permeameters Compaisons of Tansient Analytical Methods fo Detemining Hydaulic Conductivity Using Disc Pemeametes 1,,3 Cook, F.J. 1 CSRO Land and Wate, ndoooopilly, Queensland The Univesity of Queensland, St Lucia,

More information

And Ph.D. Candidate of Computer Science, University of Putra Malaysia 2 Faculty of Computer Science and Information Technology,

And Ph.D. Candidate of Computer Science, University of Putra Malaysia 2 Faculty of Computer Science and Information Technology, (IJCSIS) Intenational Jounal of Compute Science and Infomation Secuity, Efficient Candidacy Reduction Fo Fequent Patten Mining M.H Nadimi-Shahaki 1, Nowati Mustapha 2, Md Nasi B Sulaiman 2, Ali B Mamat

More information

Conversion Functions for Symmetric Key Ciphers

Conversion Functions for Symmetric Key Ciphers Jounal of Infomation Assuance and Secuity 2 (2006) 41 50 Convesion Functions fo Symmetic Key Ciphes Deba L. Cook and Angelos D. Keomytis Depatment of Compute Science Columbia Univesity, mail code 0401

More information

Fifth Wheel Modelling and Testing

Fifth Wheel Modelling and Testing Fifth heel Modelling and Testing en Masoy Mechanical Engineeing Depatment Floida Atlantic Univesity Boca aton, FL 4 Lois Malaptias IFMA Institut Fancais De Mechanique Advancee ampus De lemont Feand Les

More information

MULTI-TEMPORAL AND MULTI-SENSOR IMAGE MATCHING BASED ON LOCAL FREQUENCY INFORMATION

MULTI-TEMPORAL AND MULTI-SENSOR IMAGE MATCHING BASED ON LOCAL FREQUENCY INFORMATION Intenational Achives of the Photogammety Remote Sensing and Spatial Infomation Sciences Volume XXXIX-B3 2012 XXII ISPRS Congess 25 August 01 Septembe 2012 Melboune Austalia MULTI-TEMPORAL AND MULTI-SENSOR

More information

Extract Object Boundaries in Noisy Images using Level Set. Final Report

Extract Object Boundaries in Noisy Images using Level Set. Final Report Extact Object Boundaies in Noisy Images using Level Set by: Quming Zhou Final Repot Submitted to Pofesso Bian Evans EE381K Multidimensional Digital Signal Pocessing May 10, 003 Abstact Finding object contous

More information

Experimental and numerical simulation of the flow over a spillway

Experimental and numerical simulation of the flow over a spillway Euopean Wate 57: 253-260, 2017. 2017 E.W. Publications Expeimental and numeical simulation of the flow ove a spillway A. Seafeim *, L. Avgeis, V. Hissanthou and K. Bellos Depatment of Civil Engineeing,

More information

On Error Estimation in Runge-Kutta Methods

On Error Estimation in Runge-Kutta Methods Leonado Jounal of Sciences ISSN 1583-0233 Issue 18, Januay-June 2011 p. 1-10 On Eo Estimation in Runge-Kutta Methods Ochoche ABRAHAM 1,*, Gbolahan BOLARIN 2 1 Depatment of Infomation Technology, 2 Depatment

More information

IP Multicast Simulation in OPNET

IP Multicast Simulation in OPNET IP Multicast Simulation in OPNET Xin Wang, Chien-Ming Yu, Henning Schulzinne Paul A. Stipe Columbia Univesity Reutes Depatment of Compute Science 88 Pakway Dive South New Yok, New Yok Hauppuage, New Yok

More information

Introduction To Robotics (Kinematics, Dynamics, and Design)

Introduction To Robotics (Kinematics, Dynamics, and Design) Intoduction o obotics Kinematics Dnamics and Design EION # 9: satial Descitions & ansfomations li Meghdai ofesso chool of Mechanical Engineeing haif Univesit of echnolog ehan IN 365-9567 Homeage: htt://meghdai.shaif.edu

More information

Adaptation of TDMA Parameters Based on Network Conditions

Adaptation of TDMA Parameters Based on Network Conditions Adaptation of TDMA Paametes Based on Netwok Conditions Boa Kaaoglu Dept. of Elect. and Compute Eng. Univesity of Rocheste Rocheste, NY 14627 Email: kaaoglu@ece.ocheste.edu Tolga Numanoglu Dept. of Elect.

More information

A Minutiae-based Fingerprint Matching Algorithm Using Phase Correlation

A Minutiae-based Fingerprint Matching Algorithm Using Phase Correlation A Minutiae-based Fingepint Matching Algoithm Using Phase Coelation Autho Chen, Weiping, Gao, Yongsheng Published 2007 Confeence Title Digital Image Computing: Techniques and Applications DOI https://doi.og/10.1109/dicta.2007.4426801

More information

Towards Adaptive Information Merging Using Selected XML Fragments

Towards Adaptive Information Merging Using Selected XML Fragments Towads Adaptive Infomation Meging Using Selected XML Fagments Ho-Lam Lau and Wilfed Ng Depatment of Compute Science and Engineeing, The Hong Kong Univesity of Science and Technology, Hong Kong {lauhl,

More information

3D Hand Trajectory Segmentation by Curvatures and Hand Orientation for Classification through a Probabilistic Approach

3D Hand Trajectory Segmentation by Curvatures and Hand Orientation for Classification through a Probabilistic Approach 3D Hand Tajectoy Segmentation by Cuvatues and Hand Oientation fo Classification though a Pobabilistic Appoach Diego R. Faia and Joge Dias Abstact In this wok we pesent the segmentation and classification

More information

Positioning of a robot based on binocular vision for hand / foot fusion Long Han

Positioning of a robot based on binocular vision for hand / foot fusion Long Han 2nd Intenational Confeence on Advances in Mechanical Engineeing and Industial Infomatics (AMEII 26) Positioning of a obot based on binocula vision fo hand / foot fusion Long Han Compute Science and Technology,

More information

A modal estimation based multitype sensor placement method

A modal estimation based multitype sensor placement method A modal estimation based multitype senso placement method *Xue-Yang Pei 1), Ting-Hua Yi 2) and Hong-Nan Li 3) 1),)2),3) School of Civil Engineeing, Dalian Univesity of Technology, Dalian 116023, China;

More information

ASSIGN 01: Due Monday Feb 04 PART 1 Get a Sketchbook: 8.5 x 11 (Minimum size 5 x7 ) fo keeping a design jounal and a place to keep poject eseach & ideas. Make sue you have you Dopbox account and/o Flash

More information

DYNAMIC STORAGE ALLOCATION. Hanan Samet

DYNAMIC STORAGE ALLOCATION. Hanan Samet ds0 DYNAMIC STORAGE ALLOCATION Hanan Samet Compute Science Depatment and Cente fo Automation Reseach and Institute fo Advanced Compute Studies Univesity of Mayland College Pak, Mayland 074 e-mail: hjs@umiacs.umd.edu

More information

Drag Optimization on Rear Box of a Simplified Car Model by Robust Parameter Design

Drag Optimization on Rear Box of a Simplified Car Model by Robust Parameter Design Vol.2, Issue.3, May-June 2012 pp-1253-1259 ISSN: 2249-6645 Dag Optimization on Rea Box of a Simplified Ca Model by Robust Paamete Design Sajjad Beigmoadi 1, Asgha Ramezani 2 *(Automotive Engineeing Depatment,

More information

A Neural Network Model for Storing and Retrieving 2D Images of Rotated 3D Object Using Principal Components

A Neural Network Model for Storing and Retrieving 2D Images of Rotated 3D Object Using Principal Components A Neual Netwok Model fo Stong and Reteving 2D Images of Rotated 3D Object Using Pncipal Components Tsukasa AMANO, Shuichi KUROGI, Ayako EGUCHI, Takeshi NISHIDA, Yasuhio FUCHIKAWA Depatment of Contol Engineeng,

More information

Point-Biserial Correlation Analysis of Fuzzy Attributes

Point-Biserial Correlation Analysis of Fuzzy Attributes Appl Math Inf Sci 6 No S pp 439S-444S (0 Applied Mathematics & Infomation Sciences An Intenational Jounal @ 0 NSP Natual Sciences Publishing o Point-iseial oelation Analysis of Fuzzy Attibutes Hao-En hueh

More information

Monte Carlo Simulation for the ECAT HRRT using GATE

Monte Carlo Simulation for the ECAT HRRT using GATE Monte Calo Simulation fo the ECAT HRRT using GATE F. Bataille, C. Comtat, Membe, IEEE, S. Jan, and R. Tébossen Abstact The ECAT HRRT (High Resolution Reseach Tomogaph, CPS Innovations, Knoxville, TN, U.S.A.)

More information

Reader & ReaderT Monad (11A) Young Won Lim 8/20/18

Reader & ReaderT Monad (11A) Young Won Lim 8/20/18 Copyight (c) 2016-2018 Young W. Lim. Pemission is ganted to copy, distibute and/o modify this document unde the tems of the GNU Fee Documentation License, Vesion 1.2 o any late vesion published by the

More information

Assessment of Track Sequence Optimization based on Recorded Field Operations

Assessment of Track Sequence Optimization based on Recorded Field Operations Assessment of Tack Sequence Optimization based on Recoded Field Opeations Matin A. F. Jensen 1,2,*, Claus G. Søensen 1, Dionysis Bochtis 1 1 Aahus Univesity, Faculty of Science and Technology, Depatment

More information

E-OPTIMAL SEMI-REGULAR GRAPH DESIGNS AND PARTIALLY EFFICIENCY BALANCED DESIGNS

E-OPTIMAL SEMI-REGULAR GRAPH DESIGNS AND PARTIALLY EFFICIENCY BALANCED DESIGNS ounal of Statistical Theoy and Applications ISS 58-7887 Volume, ume, 22, pp.7-6 E-OPTIMAL SEMI-REGULAR GRAPH DESIGS AD PARTIALLY EFFICIECY BALACED DESIGS D.K. Ghosh Depatment of Statistics, Sauashta Uniesity,

More information