Handwritten English Character Recognition Using Logistic Regression and Neural Network

Size: px
Start display at page:

Download "Handwritten English Character Recognition Using Logistic Regression and Neural Network"

Transcription

1 Handwrtten Englsh Character Recognton Usng Logstc Regresson and Neural Network Tapan Kuar Hazra 1, Rajdeep Sarkar 2, Ankt Kuar 3 1 Departent of Inforaton Technology, Insttute of Engneerng and Manageent, Salt Lake, Kolkata Departent of Inforaton Technology, Insttute of Engneerng and Manageent, Salt Lake, Kolkata Departent of Inforaton Technology, Insttute of Engneerng and Manageent, Salt Lake, Kolkata Abstract: Hand wrtten character recognton s a challengng task often resultng n abguous labels. Usng the concepts of Machne learnng we have tred to develop an Optcal Character Recognton (OCR) syste where an algorth s traned on a data set of known letters and then can learn to accurately classfy new data. Our optcal character recognton (OCR) syste for handwrtten Englsh characters coprses of two steps-generatng tranng set data usng an OCR tool and then Applyng dfferent achne learnng algorth on the tranng set and starts the learnng process. A varety of algorths have shown good accuracy for the handwrtten letters, two of whch are looked here. Keywords: neural network, classfcaton, optcal character recognton, regularzaton, logstc regresson 1. Introducton Optcal Character Recognton (OCR) an area of coputer scence that started developng as early as 1950, currently encopasses two prevously dstnct areas - pure optcal character recognton, usng optcal technques such as rrors and lenses and dgtal character recognton, usng scanners and coputer algorths. The ntent of ths paper s to focus on recognton of sngle handwrtten character, by vewng t as a data classfcaton proble. Analyss of the result should gve us an dea on the vablty of the algorths pleented for use n coplete OCR applcaton. Success of optcal character recognton depends on a nuber of factors, two of whch are feature extracton and classfcaton algorths. We fnd Englsh OCR an nterestng proble. Ths s anly because OCR tself les n between one densonal natural language process (NLP) and three densonal real world projected down to age n coputer vson. The way we extract features for tranng/testng our odel s by frst wrtng the text on a whte or lght background. Then we use the detecton of whte spaces as a eans of segentng the age nto regons that contans lnes of text. We can reapply the process to segent the lne regons nto saller regons that contan words and letters. Whle soe OCR algorths work wth grey-scale ages, any convert ther nput nto bnary ages durng the early stages of processng. For our pleentaton we have done both, but have used the grey-scale ntensty values as nput features. We have not used bnarzed age because t outputs ntensty n ters of only 0 and 1 whch ay not gve as good result as a grey-scale age. Gven that we have age regons that contan text, whether sngle word regons or whole slabs of text, the goal here s to dentfy age pxels that belong to text and those that belong to the background. In our project we have used a tool [4] for feature extracton whch s the ntensty of each pxel. Ths tool s copletely open source, but we have ade certan odfcatons to t accordng to our need. The data generated by ths tool s then used to tran our algorth. In our work, ost characters are well structured and well-separated [2], whch s dfferent fro general vson recognton tasks where objects have uch varaton. 2. Related Work 2.1 OCR tool Optcal character recognton s a cobnaton of natural language processng (NLP) and Coputer Vson. In our applcaton, language odelng s less portant snce we have ore clues fro the age lkelhood, and the vson clues are ore robust snce t s an ntrnsc 2Dage. Below s gven how our OCR tool works: 1. In frst phase, the age contanng the text s converted nto gray-scale (preprocessng). Fgure 1: gray-scaled then bnarzed age 2. In next phase, the syste fnds characters by layout analyss. Here the text s separated nto unconnected characters. Paper ID: NOV

2 3. The tool then generates a labeled data set for the dentfed characters. The data generated s used to tran our odel. 4. Lastly test characters are classfed based on odel fro tranng data. Ths s referred to as recognton. 2.2 Classfcaton In achne learnng, classfcaton [1] s the proble of dentfyng to whch of a set of categores a new observaton belongs, on the bass of a tranng set of data contanng observatons whose category ebershp s known. Classfcaton s an exaple of pattern recognton. 3. Data Sets Snce the algorths we used are supervsed learnng algorths so we had to develop a way to generate the labeled data sets. For ths we have used our OCR tool whch gves us our requred labeled data set as shown n the followng fgure: In the ternology of achne learnng, classfcaton s consdered an nstance of supervsed learnng,.e. learnng where a tranng set of correctly dentfed observatons s avalable. The correspondng unsupervsed procedure s known as clusterng, and nvolves groupng data nto categores based on soe easure of nherent slarty or dstance Defnton We frst revew the general goal of Machne Learnng Algorth: A coputer progra s sad to learn fro experence E wth respect to soe class of tasks T and perforance easure P, f ts perforance at tasks n T, as easured by P, proves wth experence E. For classfcaton proble, the task s to tell thngs dfferent apart and the experence E s to learn the sutable representaton of the true data dstrbuton based on the perforance easured by P on tranng data. It can be vewed as an optzaton proble over a hypothess space h. In the paraetrc settng, the objectve functon s gven by ƒ (;x) where s the odel paraeter and x s a gven saple. An eprcal objectve s gven n equaton (1): ƒ () = 1 =1 ƒ ( ; x ) (1) Fgure 2: OCR tool Ths tool recognzes ndvdual characters and for each character outputs a 20*20 atrx. Ths gves us a feature set of 400 features for each tranng exaple. To obtan these features we frst convert our age to gray scale. Then each ndvdual character s recognzed and the atrx s fored by the ntensty value of every pxel. 4. Algorths Ipleented We realzed that the essence of the project was to understand the ntrcaces of dfferent achne learnng algorths and to learn whch algorth gves good result for whch use case. Wth ths phlosophy n nd, we wrote our own pleentaton of Regularzed Logstc Regresson [3] and Neural Network. The followng fgure shows how a supervsed learnng algorth works: here x 1, x 2,,x are our saples Paraetrc vs Nonparaetrc In ters of odelng the hypothess space, classfcaton algorths can be dvded nto paraetrc ones and nonparaetrc ones. In the paraetrc settng where the hypothess space s a faly of paraeterzed functon, no atter Frequentst, Bayesanst or Learnng Theorst, no atter Dscrtve, Generatve or Algortc, we end up wth an object functon whch we have to optze Bnary-class vs. Mult-class In practce Neural Networks can be easly appled for ult-class classfcaton. But, snce Logstc Regresson s a bnary classfer, there s no drect ethodology on ult-class probles. One natural approach s to reduce the ult-class proble to several bnary ones. Ths can be done ether by one-vs.-one or one-vs.-all schees. Fgure 3: Supervsed learnng algorth workng 4.1 Regularzed Logstc Regresson Logstc regresson s a bnary classfer. But our project had 26 dfferent classes, so we pleented a one vs. all extenson to classfy our 26 characters. The goal of ths algorth s to nze the cost functon gven by equaton (2): Paper ID: NOV

3 J () = 1 { y log h =1 x + (1 y ) log (1 h x ) } (2) Where, h (x) = 1 logstc functon. (1+e TX ) s the sgod functon or Overfttng wth Logstc Regresson If we have large nuber of features, the learned hypothess ay ft the tranng set well, but fals to generate new exaples,.e. predct the output on new data. Ths s called over fttng. Snce our data set has large nuber of features (400), there s a hgh probablty that our hypothess wll overft our tranng data. To overcoe ths there are anly two ways: Reducng the nuber of features Fgure 4: Logstc functon Interpretng hypothess output When our hypothess (h (x)) outputs a nuber, we treat that value as the estated probablty that y=1 on nput x. For exaple, If x s a feature vector wth x 0 =1 and x 1 = tuor Sze and we get h (x) = 0.7, ths tells that the patent has a 70% chance of the tuor beng algnant. We can wrte ths wth the followng notaton: h (x) = P (y=1 x ; θ) (3) Equaton (3) represents the probablty that y=1, gven x, paraeterzed by θ. To reduce the nuber of features we can ether select whch features to keep or we can use Model Selecton algorths. But, n reducng the nuber of features we lose soe nforaton. We can also select those features whch nze data loss, but even so, soe nforaton s stll lost Regularzaton The second and uch better way to resolve overfttng s by usng a technque whch s called regularzaton. Ths allows us to keep all features, but reduces the agntude of paraeters. The regularzed logstc regresson cost functon s gven n equaton (4): J () = 1 { y log h =1 x + (1 y ) log (1 h x n 2 ) } + λ/2 j Where, λ s the regularzaton paraeter, x () s the set of features, y () s the set of labels, s the paraeter upon whch the optzaton s done, n s the nuber of features for each tranng exaple and s the nuber of tranng exaple. 4.2 Neural Network j =1 (4) In artfcal Neural Network, a neuron s a logstc unt. We feed nput va nput wres, the logstc unt does the coputaton and the output wre sends the output. The logstc coputaton s the sae Logstc regresson hypothess calculaton. Fgure 6: A neural network In the above fgure x 1, x 2, and x 3 consttute the nput layer, a , a 2 and a 3 consttute the hdden layer and h (x) whch produces the output s called the output layer. We can have as any hdden layer as our requreent Types of classfcaton proble wth Neural Network There are bascally two types of classfcaton: Fgure 5: A sngle neuron. Bnary classfcaton The above fgure s an artfcal neuron wth a sgod (logstc) actvaton functon. The vector s also called the weghts of the odel. For bnary class, there s one output, ether 0 or 1. So there s only one output node and the value s gong to be a real nuber and s L = 1. So the output vector y s a k- densonal vector of real nubers. Paper ID: NOV

4 . Mult-class classfcaton Internatonal Journal of Scence and Research (IJSR) For ult-class there are k dstnct classfcatons. Typcally k s greater than or equal to 3. Here s L = k Ipleentaton detals For Neural Network we have pleented the backpropagaton algorth. Our Neural Network has one nput layer, one hdden layer, and one output layer. The output layer had 26 neurons or nodes each for one class. The cost functon that was nzed n ths algorth s gven n equaton (5): J () = 1 =1 K k=1 y k log (h x ) k + (1 y k ) log (1 ( h x ) k + λ 2 L 1 s s l 2 l l+1 l=1 =1 j =1 j (5) Where K = nuber of dstnct classes, s l = k. Whle pleentng the hdden layer we tred wth any dfferent nubers of neurons and fnally found that the nuber of nodes n the hdden layer should be around ean of nput layer and output layer. There are bascally two halves to the Neural Network cost functon represented by equaton (5) Frst half 1 K k=1 y k log (h x =1 ) k + (1 y k ) log (1 ( h x ) k (5a) Ths says, for each tranng data exaple (.e. 1 to the frst suaton) su for each poston n the output vector Second half λ 2 L 1 s l =1 s l+1 j=1 j l 2 l=1 (5b) Ths assve regularzaton suaton ter s also called a weght decay ter. The regularzaton ter s very slar to that n Logstc Regresson cost functon gven n equaton (4). The fgure gven below shows the nzaton of the cost functon: Ths ay ean t looks lke J () s decreasng, but n realty t ay not be decreasng by as uch as t should. So usng a nuerc ethod to check the gradent can help dagnose a bug. Gradent checkng helps ake sure an pleentaton s workng correctly. 5. Result We perfor our tranng by takng saples of handwrtng fro two dfferent ndvduals. We tran our classfers for both lower and upper case letters. Our tranng data contans 26 characters, and totally about 1100 tranng saples for each ndvdual and each case. Testng data contans about 100 characters. The followng tables show tranng versus testng accuracy for the two dfferent learnng algorths we pleented: Table 1: Frst person, lower case Tranng Algorth Testng Accuracy Accuracy Logstc Regresson 100% 79.22% Neural Network 82.64% 59.74% Table 2: Second person, lower case Algorth Tranng Accuracy Testng Accuracy Fgure 7: Cost functon nzaton Paraeters for controllng appng fro one layer to next If a neural network has s j unts (neurons) n layer j and s j+1 unts n layer j+1 then j wll be of densons [s j+1 * s j +1] Gradent checkng Logstc Regresson 100% 74.36% Neural Network 90.09% 55.13% Table 3: Frst person, upper case Algorth Tranng Accuracy Testng Accuracy Logstc Regresson 100% 88.46% Neural Network 97.52% 79.49% Backpropagaton has a lot of detals; sall bugs can be present and run t. Paper ID: NOV

5 Table 4: Second person, upper case Algorth Tranng Accuracy Testng Accuracy Logstc Regresson 100% 78.21% Neural Network 81.79% 50.00% 6. Concluson Though our proposed ethod recognzes handwrtten characters wth about 80% accuracy for Logstc Regresson and about 60% for Neural Networks, t s stll not good enough for practcal use. Constrant to the dffculty of obtanng ground truth data, we here only conduct experent on a relatvely sall dataset. In future work, we wsh we can tran these ethods wth ore data and have further testng. 7. Future Scope 1. We used raw pxel ntensty as out features. But we can use dfferent ethod to extract features whch ght prove our perforance. 2. In Neural Network we used only one hdden layer. Neural Networks n coputatonally very expensve and t takes very long te to tran n our achnes. So, we can try to run Neural Networks wth ore nuber of hdden layers on hgh perforance coputng achnes. 3. We can develop an Androd/OS applcaton that dentfes the handwrtng n real te on clckng a pcture of t. References [1] Bhandar, Adtya, Aeya Josh, and Roht Patk. "Brd Speces Identfcaton fro an Iage." [2] URL: handar,%20aeya%20josh,%20roht%20patk,%2 0Brd%20Speces%20Identfcaton%20fro%20an% 20Iage.pdf [3] Shh, Ychang, and Dongla We. "Machne Learnng Fnal Project: Handwrtten Sanskrt Recognton usng a Mult-class SVM wth K-NN Gudance." URL: = [4] George Marguls- Optcal Character Recognton: Classfcaton of handwrtten Dgts and Coputer Fonts. URL: OptcalCharacterRecognton.pdf [5] l-ocr-tool. URL: Author Profle Tapan Kuar Hazra copleted hs M.E degree fro Jadavpur Unversty, Kolkata, West Bengal, Inda. Snce fro 2003, he s workng as Assstant Professor of Departent of Inforaton Technology at Insttute of Engneerng & Manageent, Salt Lake, Kolkata, West Bengal, Inda. Hs research nterest ncludes Desgn and Analyss of Algorths, Iage Processng, Natural Language Processng, Sentent Analyss, Machne learnng, Cryptography. Rajdeep Sarkar, s pursung hs fnal seester B.Tech degree n Inforaton Technology fro Insttute of Engneerng and Manageent afflated to Maulana Abul Kala Azad Unversty of Technology, West Bengal. Hs research nterest ncludes Machne learnng and age processng. Ankt Kuar s pursung hs fnal seester B.Tech degree n Inforaton Technology fro Insttute of Engneerng and Manageent afflated to Maulana Abul Kala Azad Unversty of Technology, West Bengal. Hs research nterest ncludes Machne learnng. Paper ID: NOV

Generating Fuzzy Term Sets for Software Project Attributes using and Real Coded Genetic Algorithms

Generating Fuzzy Term Sets for Software Project Attributes using and Real Coded Genetic Algorithms Generatng Fuzzy Ter Sets for Software Proect Attrbutes usng Fuzzy C-Means C and Real Coded Genetc Algorths Al Idr, Ph.D., ENSIAS, Rabat Alan Abran, Ph.D., ETS, Montreal Azeddne Zah, FST, Fes Internatonal

More information

What is Object Detection? Face Detection using AdaBoost. Detection as Classification. Principle of Boosting (Schapire 90)

What is Object Detection? Face Detection using AdaBoost. Detection as Classification. Principle of Boosting (Schapire 90) CIS 5543 Coputer Vson Object Detecton What s Object Detecton? Locate an object n an nput age Habn Lng Extensons Vola & Jones, 2004 Dalal & Trggs, 2005 one or ultple objects Object segentaton Object detecton

More information

Large Margin Nearest Neighbor Classifiers

Large Margin Nearest Neighbor Classifiers Large Margn earest eghbor Classfers Sergo Bereo and Joan Cabestany Departent of Electronc Engneerng, Unverstat Poltècnca de Catalunya (UPC, Gran Captà s/n, C4 buldng, 08034 Barcelona, Span e-al: sbereo@eel.upc.es

More information

Lecture 5: Multilayer Perceptrons

Lecture 5: Multilayer Perceptrons Lecture 5: Multlayer Perceptrons Roger Grosse 1 Introducton So far, we ve only talked about lnear models: lnear regresson and lnear bnary classfers. We noted that there are functons that can t be represented

More information

Pattern Classification of Back-Propagation Algorithm Using Exclusive Connecting Network

Pattern Classification of Back-Propagation Algorithm Using Exclusive Connecting Network World Acade of Scence, Engneerng and Technolog 36 7 Pattern Classfcaton of Bac-Propagaton Algorth Usng Eclusve Connectng Networ Insung Jung, and G-Na Wang Abstract The obectve of ths paper s to a desgn

More information

Machine Learning 9. week

Machine Learning 9. week Machne Learnng 9. week Mappng Concept Radal Bass Functons (RBF) RBF Networks 1 Mappng It s probably the best scenaro for the classfcaton of two dataset s to separate them lnearly. As you see n the below

More information

Optimization Methods: Integer Programming Integer Linear Programming 1. Module 7 Lecture Notes 1. Integer Linear Programming

Optimization Methods: Integer Programming Integer Linear Programming 1. Module 7 Lecture Notes 1. Integer Linear Programming Optzaton Methods: Integer Prograng Integer Lnear Prograng Module Lecture Notes Integer Lnear Prograng Introducton In all the prevous lectures n lnear prograng dscussed so far, the desgn varables consdered

More information

On-line Scheduling Algorithm with Precedence Constraint in Embeded Real-time System

On-line Scheduling Algorithm with Precedence Constraint in Embeded Real-time System 00 rd Internatonal Conference on Coputer and Electrcal Engneerng (ICCEE 00 IPCSIT vol (0 (0 IACSIT Press, Sngapore DOI: 077/IPCSIT0VNo80 On-lne Schedulng Algorth wth Precedence Constrant n Ebeded Real-te

More information

Research on action recognition method under mobile phone visual sensor Wang Wenbin 1, Chen Ketang 2, Chen Liangliang 3

Research on action recognition method under mobile phone visual sensor Wang Wenbin 1, Chen Ketang 2, Chen Liangliang 3 Internatonal Conference on Autoaton, Mechancal Control and Coputatonal Engneerng (AMCCE 05) Research on acton recognton ethod under oble phone vsual sensor Wang Wenbn, Chen Ketang, Chen Langlang 3 Qongzhou

More information

Generalized Spatial Kernel based Fuzzy C-Means Clustering Algorithm for Image Segmentation

Generalized Spatial Kernel based Fuzzy C-Means Clustering Algorithm for Image Segmentation Internatonal Journal of Scence and Research (IJSR, Inda Onlne ISSN: 39-7064 Generalzed Spatal Kernel based Fuzzy -Means lusterng Algorth for Iage Segentaton Pallav Thakur, helpa Lnga Departent of Inforaton

More information

FEATURE EXTRACTION. Dr. K.Vijayarekha. Associate Dean School of Electrical and Electronics Engineering SASTRA University, Thanjavur

FEATURE EXTRACTION. Dr. K.Vijayarekha. Associate Dean School of Electrical and Electronics Engineering SASTRA University, Thanjavur FEATURE EXTRACTION Dr. K.Vjayarekha Assocate Dean School of Electrcal and Electroncs Engneerng SASTRA Unversty, Thanjavur613 41 Jont Intatve of IITs and IISc Funded by MHRD Page 1 of 8 Table of Contents

More information

Human Face Recognition Using Radial Basis Function Neural Network

Human Face Recognition Using Radial Basis Function Neural Network Huan Face Recognton Usng Radal Bass Functon eural etwor Javad Haddadna Ph.D Student Departent of Electrcal and Engneerng Arabr Unversty of Technology Hafez Avenue, Tehran, Iran, 594 E-al: H743970@cc.au.ac.r

More information

Pose Invariant Face Recognition using Hybrid DWT-DCT Frequency Features with Support Vector Machines

Pose Invariant Face Recognition using Hybrid DWT-DCT Frequency Features with Support Vector Machines Proceedngs of the 4 th Internatonal Conference on 7 th 9 th Noveber 008 Inforaton Technology and Multeda at UNITEN (ICIMU 008), Malaysa Pose Invarant Face Recognton usng Hybrd DWT-DCT Frequency Features

More information

A Binarization Algorithm specialized on Document Images and Photos

A Binarization Algorithm specialized on Document Images and Photos A Bnarzaton Algorthm specalzed on Document mages and Photos Ergna Kavalleratou Dept. of nformaton and Communcaton Systems Engneerng Unversty of the Aegean kavalleratou@aegean.gr Abstract n ths paper, a

More information

A Novel Fuzzy Classifier Using Fuzzy LVQ to Recognize Online Persian Handwriting

A Novel Fuzzy Classifier Using Fuzzy LVQ to Recognize Online Persian Handwriting A Novel Fuzzy Classfer Usng Fuzzy LVQ to Recognze Onlne Persan Handwrtng M. Soleyan Baghshah S. Bagher Shourak S. Kasae Departent of Coputer Engneerng, Sharf Unversty of Technology, Tehran, Iran soleyan@ce.sharf.edu

More information

Skew Angle Estimation and Correction of Hand Written, Textual and Large areas of Non-Textual Document Images: A Novel Approach

Skew Angle Estimation and Correction of Hand Written, Textual and Large areas of Non-Textual Document Images: A Novel Approach Angle Estmaton and Correcton of Hand Wrtten, Textual and Large areas of Non-Textual Document Images: A Novel Approach D.R.Ramesh Babu Pyush M Kumat Mahesh D Dhannawat PES Insttute of Technology Research

More information

Key-Words: - Under sear Hydrothermal vent image; grey; blue chroma; OTSU; FCM

Key-Words: - Under sear Hydrothermal vent image; grey; blue chroma; OTSU; FCM A Fast and Effectve Segentaton Algorth for Undersea Hydrotheral Vent Iage FUYUAN PENG 1 QIAN XIA 1 GUOHUA XU 2 XI YU 1 LIN LUO 1 Electronc Inforaton Engneerng Departent of Huazhong Unversty of Scence and

More information

User Behavior Recognition based on Clustering for the Smart Home

User Behavior Recognition based on Clustering for the Smart Home 3rd WSEAS Internatonal Conference on REMOTE SENSING, Vence, Italy, Noveber 2-23, 2007 52 User Behavor Recognton based on Clusterng for the Sart Hoe WOOYONG CHUNG, JAEHUN LEE, SUKHYUN YUN, SOOHAN KIM* AND

More information

Solutions to Programming Assignment Five Interpolation and Numerical Differentiation

Solutions to Programming Assignment Five Interpolation and Numerical Differentiation College of Engneerng and Coputer Scence Mechancal Engneerng Departent Mechancal Engneerng 309 Nuercal Analyss of Engneerng Systes Sprng 04 Nuber: 537 Instructor: Larry Caretto Solutons to Prograng Assgnent

More information

A Novel System for Document Classification Using Genetic Programming

A Novel System for Document Classification Using Genetic Programming Journal of Advances n Inforaton Technology Vol. 6, No. 4, Noveber 2015 A Novel Syste for Docuent Classfcaton Usng Genetc Prograng Saad M. Darwsh, Adel A. EL-Zoghab, and Doaa B. Ebad Insttute of Graduate

More information

A Cluster Tree Method For Text Categorization

A Cluster Tree Method For Text Categorization Avalable onlne at www.scencedrect.co Proceda Engneerng 5 (20) 3785 3790 Advanced n Control Engneerngand Inforaton Scence A Cluster Tree Meod For Text Categorzaton Zhaoca Sun *, Yunng Ye, Weru Deng, Zhexue

More information

Support Vector Machines

Support Vector Machines /9/207 MIST.6060 Busness Intellgence and Data Mnng What are Support Vector Machnes? Support Vector Machnes Support Vector Machnes (SVMs) are supervsed learnng technques that analyze data and recognze patterns.

More information

Face Detection and Tracking in Video Sequence using Fuzzy Geometric Face Model and Mean Shift

Face Detection and Tracking in Video Sequence using Fuzzy Geometric Face Model and Mean Shift Internatonal Journal of Advanced Trends n Coputer Scence and Engneerng, Vol., No.1, Pages : 41-46 (013) Specal Issue of ICACSE 013 - Held on 7-8 January, 013 n Lords Insttute of Engneerng and Technology,

More information

Using Gini-Index for Feature Selection in Text Categorization

Using Gini-Index for Feature Selection in Text Categorization 3rd Internatonal Conference on Inforaton, Busness and Educaton Technology (ICIBET 014) Usng Gn-Index for Feature Selecton n Text Categorzaton Zhu Wedong 1, Feng Jngyu 1 and Ln Yongn 1 School of Coputer

More information

A Semantic Model for Video Based Face Recognition

A Semantic Model for Video Based Face Recognition Proceedng of the IEEE Internatonal Conference on Inforaton and Autoaton Ynchuan, Chna, August 2013 A Seantc Model for Vdeo Based Face Recognton Dhong Gong, Ka Zhu, Zhfeng L, and Yu Qao Shenzhen Key Lab

More information

Introduction. Leslie Lamports Time, Clocks & the Ordering of Events in a Distributed System. Overview. Introduction Concepts: Time

Introduction. Leslie Lamports Time, Clocks & the Ordering of Events in a Distributed System. Overview. Introduction Concepts: Time Lesle Laports e, locks & the Orderng of Events n a Dstrbuted Syste Joseph Sprng Departent of oputer Scence Dstrbuted Systes and Securty Overvew Introducton he artal Orderng Logcal locks Orderng the Events

More information

MULTISPECTRAL IMAGES CLASSIFICATION BASED ON KLT AND ATR AUTOMATIC TARGET RECOGNITION

MULTISPECTRAL IMAGES CLASSIFICATION BASED ON KLT AND ATR AUTOMATIC TARGET RECOGNITION MULTISPECTRAL IMAGES CLASSIFICATION BASED ON KLT AND ATR AUTOMATIC TARGET RECOGNITION Paulo Quntlano 1 & Antono Santa-Rosa 1 Federal Polce Department, Brasla, Brazl. E-mals: quntlano.pqs@dpf.gov.br and

More information

Comparative Study between different Eigenspace-based Approaches for Face Recognition

Comparative Study between different Eigenspace-based Approaches for Face Recognition Coparatve Study between dfferent Egenspace-based Approaches for Face Recognton Pablo Navarrete and Javer Ruz-del-Solar Departent of Electrcal Engneerng, Unversdad de Chle, CHILE Eal: {pnavarre, jruzd}@cec.uchle.cl

More information

A new Fuzzy Noise-rejection Data Partitioning Algorithm with Revised Mahalanobis Distance

A new Fuzzy Noise-rejection Data Partitioning Algorithm with Revised Mahalanobis Distance A new Fuzzy ose-reecton Data Parttonng Algorth wth Revsed Mahalanobs Dstance M.H. Fazel Zarand, Mlad Avazbeg I.B. Tursen Departent of Industral Engneerng, Arabr Unversty of Technology Tehran, Iran Departent

More information

Detection of an Object by using Principal Component Analysis

Detection of an Object by using Principal Component Analysis Detecton of an Object by usng Prncpal Component Analyss 1. G. Nagaven, 2. Dr. T. Sreenvasulu Reddy 1. M.Tech, Department of EEE, SVUCE, Trupath, Inda. 2. Assoc. Professor, Department of ECE, SVUCE, Trupath,

More information

A New Scheduling Algorithm for Servers

A New Scheduling Algorithm for Servers A New Schedulng Algorth for Servers Nann Yao, Wenbn Yao, Shaobn Ca, and Jun N College of Coputer Scence and Technology, Harbn Engneerng Unversty, Harbn, Chna {yaonann, yaowenbn, cashaobn, nun}@hrbeu.edu.cn

More information

A system based on a modified version of the FCM algorithm for profiling Web users from access log

A system based on a modified version of the FCM algorithm for profiling Web users from access log A syste based on a odfed verson of the FCM algorth for proflng Web users fro access log Paolo Corsn, Laura De Dosso, Beatrce Lazzern, Francesco Marcellon Dpartento d Ingegnera dell Inforazone va Dotsalv,

More information

An Efficient Fault-Tolerant Multi-Bus Data Scheduling Algorithm Based on Replication and Deallocation

An Efficient Fault-Tolerant Multi-Bus Data Scheduling Algorithm Based on Replication and Deallocation BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volue 16, No Sofa 016 Prnt ISSN: 1311-970; Onlne ISSN: 1314-4081 DOI: 10.1515/cat-016-001 An Effcent Fault-Tolerant Mult-Bus Data

More information

Color Image Segmentation Based on Adaptive Local Thresholds

Color Image Segmentation Based on Adaptive Local Thresholds Color Iage Segentaton Based on Adaptve Local Thresholds ETY NAVON, OFE MILLE *, AMI AVEBUCH School of Coputer Scence Tel-Avv Unversty, Tel-Avv, 69978, Israel E-Mal * : llero@post.tau.ac.l Fax nuber: 97-3-916084

More information

Three supervised learning methods on pen digits character recognition dataset

Three supervised learning methods on pen digits character recognition dataset Three supervsed learnng methods on pen dgts character recognton dataset Chrs Flezach Department of Computer Scence and Engneerng Unversty of Calforna, San Dego San Dego, CA 92093 cflezac@cs.ucsd.edu Satoru

More information

A Bayesian Mixture Model for Multi-view Face Alignment

A Bayesian Mixture Model for Multi-view Face Alignment A Bayesan Mxture Model for Mult-vew Face Algnent Y Zhou, We Zhang, Xaoou Tang, and Harry Shu Mcrosoft Research Asa Bejng, P. R. Chna {t-yzhou, xtang, hshu}@crosoft.co DCST, Tsnghua Unversty Bejng, P. R.

More information

Survey of Classification Techniques in Data Mining

Survey of Classification Techniques in Data Mining Proceedngs of the Internatonal MultConference of Engneers and Coputer Scentsts 2009 Vol I Survey of Classfcaton Technques n Data Mnng Thar Nu Phyu Abstract Classfcaton s a data nng (achne learnng) technque

More information

Low training strength high capacity classifiers for accurate ensembles using Walsh Coefficients

Low training strength high capacity classifiers for accurate ensembles using Walsh Coefficients Low tranng strength hgh capacty classfers for accurate ensebles usng Walsh Coeffcents Terry Wndeatt, Cere Zor Unv Surrey, Guldford, Surrey, Gu2 7H t.wndeatt surrey.ac.uk Abstract. If a bnary decson s taken

More information

SLAM Summer School 2006 Practical 2: SLAM using Monocular Vision

SLAM Summer School 2006 Practical 2: SLAM using Monocular Vision SLAM Summer School 2006 Practcal 2: SLAM usng Monocular Vson Javer Cvera, Unversty of Zaragoza Andrew J. Davson, Imperal College London J.M.M Montel, Unversty of Zaragoza. josemar@unzar.es, jcvera@unzar.es,

More information

Relevance Feedback in Content-based 3D Object Retrieval A Comparative Study

Relevance Feedback in Content-based 3D Object Retrieval A Comparative Study 753 Coputer-Aded Desgn and Applcatons 008 CAD Solutons, LLC http://www.cadanda.co Relevance Feedback n Content-based 3D Object Retreval A Coparatve Study Panagots Papadaks,, Ioanns Pratkaks, Theodore Trafals

More information

12/2/2009. Announcements. Parametric / Non-parametric. Case-Based Reasoning. Nearest-Neighbor on Images. Nearest-Neighbor Classification

12/2/2009. Announcements. Parametric / Non-parametric. Case-Based Reasoning. Nearest-Neighbor on Images. Nearest-Neighbor Classification Introducton to Artfcal Intellgence V22.0472-001 Fall 2009 Lecture 24: Nearest-Neghbors & Support Vector Machnes Rob Fergus Dept of Computer Scence, Courant Insttute, NYU Sldes from Danel Yeung, John DeNero

More information

ENSEMBLE learning has been widely used in data and

ENSEMBLE learning has been widely used in data and IEEE GEOSCIENCE AND REMOTE SENSING LETTERS, VOL. 9, NO. 5, SEPTEMBER 2012 943 Sparse Kernel-Based Hyperspectral Anoaly Detecton Prudhv Gurra, Meber, IEEE, Heesung Kwon, Senor Meber, IEEE, andtothyhan Abstract

More information

Merging Results by Using Predicted Retrieval Effectiveness

Merging Results by Using Predicted Retrieval Effectiveness Mergng Results by Usng Predcted Retreval Effectveness Introducton Wen-Cheng Ln and Hsn-Hs Chen Departent of Coputer Scence and Inforaton Engneerng Natonal Tawan Unversty Tape, TAIWAN densln@nlg.cse.ntu.edu.tw;

More information

Learning the Kernel Parameters in Kernel Minimum Distance Classifier

Learning the Kernel Parameters in Kernel Minimum Distance Classifier Learnng the Kernel Parameters n Kernel Mnmum Dstance Classfer Daoqang Zhang 1,, Songcan Chen and Zh-Hua Zhou 1* 1 Natonal Laboratory for Novel Software Technology Nanjng Unversty, Nanjng 193, Chna Department

More information

Multiple Instance Learning via Multiple Kernel Learning *

Multiple Instance Learning via Multiple Kernel Learning * The Nnth nternatonal Syposu on Operatons Research and ts Applcatons (SORA 10) Chengdu-Juzhagou, Chna, August 19 23, 2010 Copyrght 2010 ORSC & APORC, pp. 160 167 ultple nstance Learnng va ultple Kernel

More information

Performance Analysis of Coiflet Wavelet and Moment Invariant Feature Extraction for CT Image Classification using SVM

Performance Analysis of Coiflet Wavelet and Moment Invariant Feature Extraction for CT Image Classification using SVM Perforance Analyss of Coflet Wavelet and Moent Invarant Feature Extracton for CT Iage Classfcaton usng SVM N. T. Renukadev, Assstant Professor, Dept. of CT-UG, Kongu Engneerng College, Perundura Dr. P.

More information

A Fast Visual Tracking Algorithm Based on Circle Pixels Matching

A Fast Visual Tracking Algorithm Based on Circle Pixels Matching A Fast Vsual Trackng Algorthm Based on Crcle Pxels Matchng Zhqang Hou hou_zhq@sohu.com Chongzhao Han czhan@mal.xjtu.edu.cn Ln Zheng Abstract: A fast vsual trackng algorthm based on crcle pxels matchng

More information

Nighttime Motion Vehicle Detection Based on MILBoost

Nighttime Motion Vehicle Detection Based on MILBoost Sensors & Transducers 204 by IFSA Publshng, S L http://wwwsensorsportalco Nghtte Moton Vehcle Detecton Based on MILBoost Zhu Shao-Png,, 2 Fan Xao-Png Departent of Inforaton Manageent, Hunan Unversty of

More information

Edge Detection in Noisy Images Using the Support Vector Machines

Edge Detection in Noisy Images Using the Support Vector Machines Edge Detecton n Nosy Images Usng the Support Vector Machnes Hlaro Gómez-Moreno, Saturnno Maldonado-Bascón, Francsco López-Ferreras Sgnal Theory and Communcatons Department. Unversty of Alcalá Crta. Madrd-Barcelona

More information

A Fast Dictionary Learning Algorithm for Image Denoising Hai-yang LI *, Chao YUAN and Heng-yuan WANG

A Fast Dictionary Learning Algorithm for Image Denoising Hai-yang LI *, Chao YUAN and Heng-yuan WANG 08 Internatonal onference on Modelng, Sulaton and Optzaton (MSO 08) ISBN: 978--60595-54- A ast ctonary Learnng Algorth for Iage enosng Ha-yang LI, hao YUAN and Heng-yuan WANG School of Scence, X'an Polytechnc

More information

Classifying Acoustic Transient Signals Using Artificial Intelligence

Classifying Acoustic Transient Signals Using Artificial Intelligence Classfyng Acoustc Transent Sgnals Usng Artfcal Intellgence Steve Sutton, Unversty of North Carolna At Wlmngton (suttons@charter.net) Greg Huff, Unversty of North Carolna At Wlmngton (jgh7476@uncwl.edu)

More information

A PATTERN RECOGNITION APPROACH TO IMAGE SEGMENTATION

A PATTERN RECOGNITION APPROACH TO IMAGE SEGMENTATION 1 THE PUBLISHING HOUSE PROCEEDINGS OF THE ROMANIAN ACADEMY, Seres A, OF THE ROMANIAN ACADEMY Volume 4, Number 2/2003, pp.000-000 A PATTERN RECOGNITION APPROACH TO IMAGE SEGMENTATION Tudor BARBU Insttute

More information

Outline. Third Programming Project Two-Dimensional Arrays. Files You Can Download. Exercise 8 Linear Regression. General Regression

Outline. Third Programming Project Two-Dimensional Arrays. Files You Can Download. Exercise 8 Linear Regression. General Regression Project 3 Two-densonal arras Ma 9, 6 Thrd Prograng Project Two-Densonal Arras Larr Caretto Coputer Scence 6 Coputng n Engneerng and Scence Ma 9, 6 Outlne Quz three on Thursda for full lab perod See saple

More information

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers IOSR Journal of Electroncs and Communcaton Engneerng (IOSR-JECE) e-issn: 78-834,p- ISSN: 78-8735.Volume 9, Issue, Ver. IV (Mar - Apr. 04), PP 0-07 Content Based Image Retreval Usng -D Dscrete Wavelet wth

More information

Face Recognition Based on SVM and 2DPCA

Face Recognition Based on SVM and 2DPCA Vol. 4, o. 3, September, 2011 Face Recognton Based on SVM and 2DPCA Tha Hoang Le, Len Bu Faculty of Informaton Technology, HCMC Unversty of Scence Faculty of Informaton Scences and Engneerng, Unversty

More information

Optimally Combining Positive and Negative Features for Text Categorization

Optimally Combining Positive and Negative Features for Text Categorization Optally Cobnng Postve and Negatve Features for Text Categorzaton Zhaohu Zheng ZZHENG3@CEDAR.BUFFALO.EDU Rohn Srhar ROHINI@CEDAR.BUFFALO.EDU CEDAR, Dept. of Coputer Scence and Engneerng, State Unversty

More information

Investigating the Performance of Naïve- Bayes Classifiers and K- Nearest Neighbor Classifiers

Investigating the Performance of Naïve- Bayes Classifiers and K- Nearest Neighbor Classifiers Journal of Convergence Informaton Technology Volume 5, Number 2, Aprl 2010 Investgatng the Performance of Naïve- Bayes Classfers and K- Nearest Neghbor Classfers Mohammed J. Islam *, Q. M. Jonathan Wu,

More information

Writer Identification using a Deep Neural Network

Writer Identification using a Deep Neural Network Wrter Identfcaton usng a Deep Neural Network Jun Chu and Sargur Srhar Department of Computer Scence and Engneerng Unversty at Buffalo, The State Unversty of New York Buffalo, NY 1469, USA {jchu6, srhar}@buffalo.edu

More information

Pictures at an Exhibition

Pictures at an Exhibition 1 Pctures at an Exhbton Stephane Kwan and Karen Zhu Department of Electrcal Engneerng Stanford Unversty, Stanford, CA 9405 Emal: {skwan1, kyzhu}@stanford.edu Abstract An mage processng algorthm s desgned

More information

Face Detection with Deep Learning

Face Detection with Deep Learning Face Detecton wth Deep Learnng Yu Shen Yus122@ucsd.edu A13227146 Kuan-We Chen kuc010@ucsd.edu A99045121 Yzhou Hao y3hao@ucsd.edu A98017773 Mn Hsuan Wu mhwu@ucsd.edu A92424998 Abstract The project here

More information

International Conference on Applied Science and Engineering Innovation (ASEI 2015)

International Conference on Applied Science and Engineering Innovation (ASEI 2015) Internatonal Conference on Appled Scence and Engneerng Innovaton (ASEI 205) Desgn and Implementaton of Novel Agrcultural Remote Sensng Image Classfcaton Framework through Deep Neural Network and Mult-

More information

Support Vector Machines

Support Vector Machines Support Vector Machnes Decson surface s a hyperplane (lne n 2D) n feature space (smlar to the Perceptron) Arguably, the most mportant recent dscovery n machne learnng In a nutshell: map the data to a predetermned

More information

An Optimal Algorithm for Prufer Codes *

An Optimal Algorithm for Prufer Codes * J. Software Engneerng & Applcatons, 2009, 2: 111-115 do:10.4236/jsea.2009.22016 Publshed Onlne July 2009 (www.scrp.org/journal/jsea) An Optmal Algorthm for Prufer Codes * Xaodong Wang 1, 2, Le Wang 3,

More information

Tara Kernel Fuzzy Clustering (TKFCM) for a Robust Adaptive Threshold Algorithm based on Level Set Method

Tara Kernel Fuzzy Clustering (TKFCM) for a Robust Adaptive Threshold Algorithm based on Level Set Method Internatonal Journal of Inforaton Technology Convergence and Servces (IJITCS) Vol., No., February 0 Tara Kernel Fuzzy Clusterng (TKFCM) for a Robust Adaptve Threshold Algorth based on Level Set Method

More information

BOOSTING CLASSIFICATION ACCURACY WITH SAMPLES CHOSEN FROM A VALIDATION SET

BOOSTING CLASSIFICATION ACCURACY WITH SAMPLES CHOSEN FROM A VALIDATION SET 1 BOOSTING CLASSIFICATION ACCURACY WITH SAMPLES CHOSEN FROM A VALIDATION SET TZU-CHENG CHUANG School of Electrcal and Computer Engneerng, Purdue Unversty, West Lafayette, Indana 47907 SAUL B. GELFAND School

More information

A Theory of Non-Deterministic Networks

A Theory of Non-Deterministic Networks A Theory of Non-Deternstc Networs Alan Mshcheno and Robert K rayton Departent of EECS, Unversty of Calforna at ereley {alan, brayton}@eecsbereleyedu Abstract oth non-deterns and ult-level networs copactly

More information

Prediction of Dumping a Product in Textile Industry

Prediction of Dumping a Product in Textile Industry Int. J. Advanced Networkng and Applcatons Volue: 05 Issue: 03 Pages:957-96 (03) IN : 0975-090 957 Predcton of upng a Product n Textle Industry.V.. GANGA EVI Professor n MCA K..R.M. College of Engneerng

More information

Multimodal Biometric System Using Face-Iris Fusion Feature

Multimodal Biometric System Using Face-Iris Fusion Feature JOURNAL OF COMPUERS, VOL. 6, NO. 5, MAY 2011 931 Multodal Boetrc Syste Usng Face-Irs Fuson Feature Zhfang Wang, Erfu Wang, Shuangshuang Wang and Qun Dng Key Laboratory of Electroncs Engneerng, College

More information

Outline. Type of Machine Learning. Examples of Application. Unsupervised Learning

Outline. Type of Machine Learning. Examples of Application. Unsupervised Learning Outlne Artfcal Intellgence and ts applcatons Lecture 8 Unsupervsed Learnng Professor Danel Yeung danyeung@eee.org Dr. Patrck Chan patrckchan@eee.org South Chna Unversty of Technology, Chna Introducton

More information

NAG Fortran Library Chapter Introduction. G10 Smoothing in Statistics

NAG Fortran Library Chapter Introduction. G10 Smoothing in Statistics Introducton G10 NAG Fortran Lbrary Chapter Introducton G10 Smoothng n Statstcs Contents 1 Scope of the Chapter... 2 2 Background to the Problems... 2 2.1 Smoothng Methods... 2 2.2 Smoothng Splnes and Regresson

More information

Cluster Analysis of Electrical Behavior

Cluster Analysis of Electrical Behavior Journal of Computer and Communcatons, 205, 3, 88-93 Publshed Onlne May 205 n ScRes. http://www.scrp.org/ournal/cc http://dx.do.org/0.4236/cc.205.350 Cluster Analyss of Electrcal Behavor Ln Lu Ln Lu, School

More information

COLOR IMAGE SEGMENTATION USING SOFT ROUGH FUZZY-C-MEANS CLUSTERING AND SMO SUPPORT VECTOR MACHINE

COLOR IMAGE SEGMENTATION USING SOFT ROUGH FUZZY-C-MEANS CLUSTERING AND SMO SUPPORT VECTOR MACHINE Sgnal & Iage Processng : An Internatonal Journal (SIPIJ) Vol.6, No.5, October 205 COLOR IMAGE SEGMENTATION USING SOFT ROUGH FUZZY-C-MEANS CLUSTERING AND SMO SUPPORT VECTOR MACHINE R.V.V.Krshna and S.Srnvas

More information

An Image Fusion Approach Based on Segmentation Region

An Image Fusion Approach Based on Segmentation Region Rong Wang, L-Qun Gao, Shu Yang, Yu-Hua Cha, and Yan-Chun Lu An Image Fuson Approach Based On Segmentaton Regon An Image Fuson Approach Based on Segmentaton Regon Rong Wang, L-Qun Gao, Shu Yang 3, Yu-Hua

More information

Unsupervised Learning

Unsupervised Learning Pattern Recognton Lecture 8 Outlne Introducton Unsupervsed Learnng Parametrc VS Non-Parametrc Approach Mxture of Denstes Maxmum-Lkelhood Estmates Clusterng Prof. Danel Yeung School of Computer Scence and

More information

Aircraft Engine Gas Path Fault Diagnosis Based on Fuzzy Inference

Aircraft Engine Gas Path Fault Diagnosis Based on Fuzzy Inference 202 Internatonal Conference on Industral and Intellgent Inforaton (ICIII 202) IPCSIT vol.3 (202) (202) IACSIT Press, Sngapore Arcraft Engne Gas Path Fault Dagnoss Based on Fuzzy Inference Changzheng L,

More information

Help for Time-Resolved Analysis TRI2 version 2.4 P Barber,

Help for Time-Resolved Analysis TRI2 version 2.4 P Barber, Help for Tme-Resolved Analyss TRI2 verson 2.4 P Barber, 22.01.10 Introducton Tme-resolved Analyss (TRA) becomes avalable under the processng menu once you have loaded and selected an mage that contans

More information

User Authentication Based On Behavioral Mouse Dynamics Biometrics

User Authentication Based On Behavioral Mouse Dynamics Biometrics User Authentcaton Based On Behavoral Mouse Dynamcs Bometrcs Chee-Hyung Yoon Danel Donghyun Km Department of Computer Scence Department of Computer Scence Stanford Unversty Stanford Unversty Stanford, CA

More information

AN ADAPTIVE APPROACH TO THE SEGMENTATION OF DCE-MR IMAGES OF THE BREAST: COMPARISON WITH CLASSICAL THRESHOLDING ALGORITHMS

AN ADAPTIVE APPROACH TO THE SEGMENTATION OF DCE-MR IMAGES OF THE BREAST: COMPARISON WITH CLASSICAL THRESHOLDING ALGORITHMS A ADAPTIVE APPROACH TO THE SEGMETATIO OF DCE-MR IMAGES OF THE BREAST: COMPARISO WITH CLASSICAL THRESHOLDIG ALGORITHMS Fath Kalel a zaettn Aydn a Gohan Ertas H.Ozcan Gulcur a Bahcesehr Unversty Engneerng

More information

Wavelets and Support Vector Machines for Texture Classification

Wavelets and Support Vector Machines for Texture Classification Wavelets and Support Vector Machnes for Texture Classfcaton Kashf Mahmood Rapoot Faculty of Computer Scence & Engneerng, Ghulam Ishaq Khan Insttute, Top, PAKISTAN. kmr@gk.edu.pk Nasr Mahmood Rapoot Department

More information

Comparing Image Representations for Training a Convolutional Neural Network to Classify Gender

Comparing Image Representations for Training a Convolutional Neural Network to Classify Gender 2013 Frst Internatonal Conference on Artfcal Intellgence, Modellng & Smulaton Comparng Image Representatons for Tranng a Convolutonal Neural Network to Classfy Gender Choon-Boon Ng, Yong-Haur Tay, Bok-Mn

More information

TN348: Openlab Module - Colocalization

TN348: Openlab Module - Colocalization TN348: Openlab Module - Colocalzaton Topc The Colocalzaton module provdes the faclty to vsualze and quantfy colocalzaton between pars of mages. The Colocalzaton wndow contans a prevew of the two mages

More information

A Gradient Difference based Technique for Video Text Detection

A Gradient Difference based Technique for Video Text Detection A Gradent Dfference based Technque for Vdeo Text Detecton Palaahnakote Shvakumara, Trung Quy Phan and Chew Lm Tan School of Computng, Natonal Unversty of Sngapore {shva, phanquyt, tancl }@comp.nus.edu.sg

More information

Machine Learning. Topic 6: Clustering

Machine Learning. Topic 6: Clustering Machne Learnng Topc 6: lusterng lusterng Groupng data nto (hopefully useful) sets. Thngs on the left Thngs on the rght Applcatons of lusterng Hypothess Generaton lusters mght suggest natural groups. Hypothess

More information

Some Advanced SPC Tools 1. Cumulative Sum Control (Cusum) Chart For the data shown in Table 9-1, the x chart can be generated.

Some Advanced SPC Tools 1. Cumulative Sum Control (Cusum) Chart For the data shown in Table 9-1, the x chart can be generated. Some Advanced SP Tools 1. umulatve Sum ontrol (usum) hart For the data shown n Table 9-1, the x chart can be generated. However, the shft taken place at sample #21 s not apparent. 92 For ths set samples,

More information

A Gradient Difference based Technique for Video Text Detection

A Gradient Difference based Technique for Video Text Detection 2009 10th Internatonal Conference on Document Analyss and Recognton A Gradent Dfference based Technque for Vdeo Text Detecton Palaahnakote Shvakumara, Trung Quy Phan and Chew Lm Tan School of Computng,

More information

Pattern classification of cotton yarn neps

Pattern classification of cotton yarn neps Indan Journal of Fbre & extle Research Vol. 41, September 016, pp. 70-77 Pattern classfcaton of cotton yarn neps Abul Hasnat, Anndya Ghosh a, Azzul Hoque b & Santanu Halder c Government College of Engneerng

More information

IMAGE REPRESENTATION USING EPANECHNIKOV DENSITY FEATURE POINTS ESTIMATOR

IMAGE REPRESENTATION USING EPANECHNIKOV DENSITY FEATURE POINTS ESTIMATOR Sgnal & Iage Processng : An Internatonal Journal (SIPIJ) Vol.4, No., February 03 IMAGE REPRESENTATION USING EPANECHNIKOV DENSITY FEATURE POINTS ESTIMATOR Tranos Zuva, Kenelwe Zuva 3, Sunday O. Ojo, Selean

More information

Tsinghua University at TAC 2009: Summarizing Multi-documents by Information Distance

Tsinghua University at TAC 2009: Summarizing Multi-documents by Information Distance Tsnghua Unversty at TAC 2009: Summarzng Mult-documents by Informaton Dstance Chong Long, Mnle Huang, Xaoyan Zhu State Key Laboratory of Intellgent Technology and Systems, Tsnghua Natonal Laboratory for

More information

Classifier Selection Based on Data Complexity Measures *

Classifier Selection Based on Data Complexity Measures * Classfer Selecton Based on Data Complexty Measures * Edth Hernández-Reyes, J.A. Carrasco-Ochoa, and J.Fco. Martínez-Trndad Natonal Insttute for Astrophyscs, Optcs and Electroncs, Lus Enrque Erro No.1 Sta.

More information

Backpropagation: In Search of Performance Parameters

Backpropagation: In Search of Performance Parameters Bacpropagaton: In Search of Performance Parameters ANIL KUMAR ENUMULAPALLY, LINGGUO BU, and KHOSROW KAIKHAH, Ph.D. Computer Scence Department Texas State Unversty-San Marcos San Marcos, TX-78666 USA ae049@txstate.edu,

More information

A Modified Adaptive Fuzzy C-Means Clustering Algorithm For Brain MR Image Segmentation

A Modified Adaptive Fuzzy C-Means Clustering Algorithm For Brain MR Image Segmentation A Modfed Adaptve Fuzzy C-Means Clusterng Algorth For Bran MR Iage Segentaton M. Ganesh, V. Palansay Electroncs and Councaton Engneerng, Info Insttute of Engneerng, Cobatore, Talnadu, Inda. Abstract Fuzzy

More information

y and the total sum of

y and the total sum of Lnear regresson Testng for non-lnearty In analytcal chemstry, lnear regresson s commonly used n the constructon of calbraton functons requred for analytcal technques such as gas chromatography, atomc absorpton

More information

A Balanced Ensemble Approach to Weighting Classifiers for Text Classification

A Balanced Ensemble Approach to Weighting Classifiers for Text Classification A Balanced Enseble Approach to Weghtng Classfers for Text Classfcaton Gabrel Pu Cheong Fung 1, Jeffrey Xu Yu 1, Haxun Wang 2, Davd W. Cheung 3, Huan Lu 4 1 The Chnese Unversty of Hong Kong, Hong Kong,

More information

EYE CENTER LOCALIZATION ON A FACIAL IMAGE BASED ON MULTI-BLOCK LOCAL BINARY PATTERNS

EYE CENTER LOCALIZATION ON A FACIAL IMAGE BASED ON MULTI-BLOCK LOCAL BINARY PATTERNS P.G. Demdov Yaroslavl State Unversty Anatoly Ntn, Vladmr Khryashchev, Olga Stepanova, Igor Kostern EYE CENTER LOCALIZATION ON A FACIAL IMAGE BASED ON MULTI-BLOCK LOCAL BINARY PATTERNS Yaroslavl, 2015 Eye

More information

R s s f. m y s. SPH3UW Unit 7.3 Spherical Concave Mirrors Page 1 of 12. Notes

R s s f. m y s. SPH3UW Unit 7.3 Spherical Concave Mirrors Page 1 of 12. Notes SPH3UW Unt 7.3 Sphercal Concave Mrrors Page 1 of 1 Notes Physcs Tool box Concave Mrror If the reflectng surface takes place on the nner surface of the sphercal shape so that the centre of the mrror bulges

More information

MINING VERY LARGE DATASETS WITH SVM AND VISUALIZATION

MINING VERY LARGE DATASETS WITH SVM AND VISUALIZATION MINING VERY LARGE DATASETS WITH SVM AND VISUALIZATION Author, Author2 Address Eal: eal, eal2 Keywords: Mnng very large datasets, Support vector achnes, Actve learnng, Interval data analyss, Vsual data

More information

Benchmarking of Update Learning Strategies on Digit Classifier Systems

Benchmarking of Update Learning Strategies on Digit Classifier Systems 2012 Internatonal Conference on Fronters n Handwrtng Recognton Benchmarkng of Update Learnng Strateges on Dgt Classfer Systems D. Barbuzz, D. Impedovo, G. Prlo Dpartmento d Informatca Unverstà degl Stud

More information

A high precision collaborative vision measurement of gear chamfering profile

A high precision collaborative vision measurement of gear chamfering profile Internatonal Conference on Advances n Mechancal Engneerng and Industral Informatcs (AMEII 05) A hgh precson collaboratve vson measurement of gear chamferng profle Conglng Zhou, a, Zengpu Xu, b, Chunmng

More information

The ray density estimation of a CT system by a supervised learning algorithm

The ray density estimation of a CT system by a supervised learning algorithm Te ray densty estaton of a CT syste by a suervsed learnng algort Nae : Jongduk Baek Student ID : 5459 Toc y toc s to fnd te ray densty of a new CT syste by usng te learnng algort Background Snce te develoent

More information

Monte Carlo Evaluation of Classification Algorithms Based on Fisher's Linear Function in Classification of Patients With CHD

Monte Carlo Evaluation of Classification Algorithms Based on Fisher's Linear Function in Classification of Patients With CHD IOSR Journal of Matheatcs (IOSR-JM) e-issn: 2278-5728, p-issn: 2319-765X. Volue 13, Issue 1 Ver. IV (Jan. - Feb. 2017), PP 104-109 www.osrjournals.org Monte Carlo Evaluaton of Classfcaton Algorths Based

More information