Face Detection with Deep Learning

Size: px
Start display at page:

Download "Face Detection with Deep Learning"

Transcription

1 Face Detecton wth Deep Learnng Yu Shen A Kuan-We Chen A Yzhou Hao A Mn Hsuan Wu A Abstract The project here presents the mplementaton of face detecton technology by usng deep learnng. The man dea used n ths project s mult-task Cascaded Convolutonal Neural Networks, whch contans three sub-networks together to learn to recognze human faces after several stages of decomposton and flterng. The dataset that s gong to be used s FDDB dataset, whch contans over fve thousand faces n a set of around two thousand and eght hundred mages. 1. Introducton Wth the development of machne learnng and computer vson, face detecton becomes a very popular and useful technology. The hstory of face detecton can be dvded nto three phases. The frst perod was from 1964 to It was the start of face detecton, and the research n ths perod were manly based on Geometrc features. At ths early stage, there were not many applcatons related to face detecton. The second perod was from 1991 to Although ths perod was short (only seven years), t was actually a peak tme of face detecton research and development. A lot of new algorthm and busness applcaton on face detecton showed up n ths tme. And the research moved to Egen-face based method nstead of geometrc feature based method. In the thrd perod, from 1998 to now, researchers and scentsts are focusng on face detecton under non deal condtons. For example, f the lght s too strong or people are movng around too fast, t s gong to be hard to track the faces. Hence, people tred to mplement face detecton based on three dmensonal model to have a better track of faces. And for now, face detecton has been mplemented and wdely used n dfferent ndustres and products. Face detecton could be used n the access control system of a door or of a buldng. It could also be used by companes or school to check employees or students attendance. The new Phone released several months ago also uses ths technology to unlock the screen. Face detecton s defntely gong to be an ndspensable part n the ntellgent socety n the near future and face detecton may be mplemented nto even more applcatons such as dgtal passport and so on. As students studyng n machne learnng, we are curous and enthusastc about ths new and popular technology. Hence, n ths project, we are gong to use Deep learnng to detect human faces n mages. 2. Related Work As mentoned n the ntroducton part, the face detecton technology has been studed for over 50 years. Hence, n the hstory, there are a lot of dfferent face detecton methods that are nterestng and each of them has ther own advantages and dsadvantages. For example, the Vola-Jones method[6] s the frst framework that can allow face detecton n real tme. Ths s a three-step framework, whch ncludes features computaton, classfcaton, and combnaton of classfers. Overall, Vola-Jones s a successful method, whch has fast detecton speed and good accuracy and low false postve rate. However, t takes long tme for tranng and has restrcton on dfferent head poses. Local Bnary Pattern(LBP [1]) s another effectve method. In ths method, every pxel s assgned a texture value, whch can be combned wth target for trackng. The advantages of LBP ncludes fast computaton, successful descrpton of texture feature and smple steps. However, t could be only used for gray mages, and t doesn t have good accuracy. Adaboost algorthm[3] was proposed n AdaBoost s a learnng algorthm that can create a strong classfer by choosng vsual features from a bunch of smple classfers and combnng them lnearly. It s very smple to be mplemented because t doesn t requre any pror knowledge about the face structure. Also, t can be used wth numerous dfferent classfers and mproves classfcaton accuracy. The dsadvantages of Adaboost are that frst t has slow tranng speed, second t s too senstve to nosy data whch can lead to low fnal detecton accuracy. SMQT Features and SNOW Classfer Method[5] s a relatvely new method publshed n Ths method has two phases. The frst phase s face lumnance, whch get pxel nformaton of the mage. The second phase s detecton whch uses SMQT features as feature extracton and SNOW to speed 1

2 up the classfer. Ths method s computatonally effcent. But t has low false postve rate. The last method dscussed here s neural network based method[4], whch s the foundaton of the MTCNN[7]. In ths early neural network method, there are two stages: flterng and mergng and arbtatng. The advantages of ths method are acceptable false detecton and acceptable accuracy. And the dsadvantages are slow detecton process and complex methodology. The method we mplemented n our project s MTCNN. Compared to all methods above, MTCNN has the best and ncredbly hgh accuracy. Although t takes some tme for tranng, we can save tme by usng pre-traned model and keep the relatvely hgh accuracy. MTCNN even supports for real tme face detecton. Hence, MTCNN s a very good method for face detecton. 3. Dataset and Features The data used s FDDB dataset [2]. It contans 5171 faces n a set of 2845 (both gray-scale and colored) mages. The dataset was broken down nto 10 folders wth roughly 520 labeled faces each folder. Each mage may contan multple faces. The dataset have labels of the postons of human faces wthn the pcture. The labels were marked by drawng ellpses around each human face, and recordng the radus of both axes, center of the ellpse, and the angle of the ellpse. As seen n 1, the data has multple Fgure 1. Sample data faces wthn the pcture wth dfferent lghtngs. Notce the two faces at the back have poor lghtng and ther bodes, even edges of ther faces are blocked by the other people n front. In 2, the labels are drawn as ellpses. Notce that ellpses may overlap wth each other. In addton, note that the person s face on the left s not labeled. Ths s because only faces wth ether one of the eyes vsble s labeled. The annotators also only label the faces that are at least 20 pxels n both heght and wdth. Snce these faces are annotated Fgure 2. Sample data wth ellptcal label by dfferent annotators, there could be slght dfferences n judgments on whether or not a face should be labeled between dfferent annotators. Moreover, dfferent poses of the faces, occlusons of faces, as well as resoluton all affect the annotatons. Therefore, there are ntrnsc dffcultes n makng a perfect labels. However, these should not affect most annotatons sgnfcantly and the annotatons should stll be relatvely accurate. 4. Method The method we used s called Mult-task Cascaded Convolutonal Networks[7]. Dfferent from other algorthms, MTCNN s cascadng three CNN wth dfferent structures together for face detecton. Fgure 3 s the ppelne of MTCNN, and fgure 4 s the detaled structure of MTCNN. Before we put the testng mage nto classfer, we need to resze the mage n dfferent scales, and stack t nto an mage pyramd. By dong these steps, we can generate the same face n dfferent scales, whch ncreases the ablty of the network. After that, a sldng wndow wll be appled to the pyramd, and break the mage nto regons, whch are the nputs to the network Stage-1 Stage-1 s called P-Net, whch references to Proposal network. It s a shallow network whch wll roughly decde whch regon contans faces. For each proposed boundng box, there wll be three dfferent classfcatons appled to t, whch are face classfcaton, boundng box regresson and facal landmark localzaton. I wll ntroduce these three algorthms n the later secton. The output of P-Net are some proposed boxng boxes and ther classfcaton scores of faces. None maxmum suppresson wll be appled n order to clean the boundng boxes that are overlappng wth each other. Those remanng boxes wll be reszed to 24x24x3, and used as the nput to the next net. 2

3 The output of ths net are stll boundng boxes and ther classfcaton scores. Those boxes wll be reszed to 48x48x3 to be used as the nput to the next net Stage-3 Stage-3 s called O-Net, whch references to Output Net. Ths network s deeper wth larger convoluton kernel comparng wth prevous nets. Ths powerful network wll make the fnal decson about where the face s and what the sze of boundng box should be Classfcaton and Regresson At the end of three stages, there are the computaton of face classfcaton, boundng box regresson and facal landmark localzaton. Ther loss functon are dfferent, I wll ntroduce them one by one Face classfcaton Fgure 3. Ppelne of three stages of MTCNN Whle dong face classfcaton, cross entropy s used as the Loss functon. L det = (y det log(p ) + (1 y det )(1 log(p ))) (1) where p s the probablty produced by the network. y det 0, 1 s the ground-truth label of the faces Boundng Box Regresson For the boundng box regresson, Euler dstance(l2 loss) s used as the loss functon. L box = ŷ box y box 2 2 (2) where ŷ box s the regresson target generated by the network and y box s the ground-truth locaton. Fgure 4. Three nets of MTCNN Facal Landmark Localzaton L2 loss s also used as the loss functon for ths part Stage-2 Stage-2 s called R-Net, whch references to Refne network. Ths Net has convoluton wth larger kernel and a fully connected layer, whch s more powerful than the prevous network. The goal of ths net s to refne the results from prevous net. The boundng boxes whch have low face classfcaton scores wll be dscarded. Agan, for the regons wth hgh classfcaton scores, boundng box regresson and facal landmark localzaton wll be appled. L landmark = ŷ landmark y landmark 2 2 (3) where ŷ landmark s the locaton of facal landmarks generated by the network and y landmark s the ground-truth locaton. These weghted sum of these three loss values s used as the loss for back propagaton. Ther weghts are determnstc values. In the P-Net and R-net, the weghts for face determnaton, boxes regresson and landmark localzaton are 1.0, 0.5 and 0.5. In the last stage, the weghts are 1.0, 0.5,

4 5. Experments/Results/Dscusson 5.1. Evaluaton method The algorthm was tested on the FDDB dataset. The evaluaton method used was to compare the coordnate of the ellpse label to the center of the output rectangle. If the two coordnates are wthn 50 pxels both n wdth and heght, the rectangle s consdered a correct detecton. If there s a detecton rectangle but not an ellptcal label near the rectangle, t s consdered a false postve. An example of false postve s shown n 5. Notce the person s face on the left was detected wth a green boundng rectangle, but t was not labeled, snce nether of the person s eyes were vsble. On the other hand, f there s a labeled ellpse but the detector fals to fnd the face, t s consdered a false negatve. An example s shown n 6. Notce a red ellpse n the top center labels a man s face that s partally covered by the person n front. Snce most of the person s face was covered, the detector was unable to detect the face. However, t was stll labeled snce one of the person s eyes s vsble. In [2], the authors proposed a method to evaluate by calculatng the overlap between the boundng rectangle and the ellpse. Although t does gve a better meanng to what a correct detecton s,.e. over 80% overlap between the rectangle and ellpse, t would consder all detecton as false detecton f the rectangle and ellpse have relatvely dfferent szes. Snce, dstance between center pxel s smpler to mplement, t was used to evaluate the results. Note that the percentage overlap s an arbtrary number as the 50 pxels used, and thus ether evaluaton method s ntrnscally mperfect as the labels. Nonetheless, the evaluaton result should stll be a meanngful metrc to test the algorthm. Fgure 6. Example of false negatve Fold False postve Correct detecton Total Faces All Table 1. Detecton results 5.2. Results The results are recorded n Table 1 and Table 2. Snce there are two knds of errors, a false postve and a false negatve, there are two metrcs to evaluate the detector. The accuracy, s the number of correct detectons made dvded by the total number of faces. Ths measures how many of the labeled faces can the detector fnd. The true postve rate, s the number of correct detectons made dvded by the number of all postves. Ths measures out of all the detectons the detector has made, what percentage of whch s a true detecton. 6. Concluson/Future Work Fgure 5. Example of false postve By usng FDDB dataset for evaluaton, our mplementaton of MTCNN got an average of 93.7% accuracy and 95.8% true postve rate. The 4% of false postve rate ndcates that there are some dfferences between the MTCNN detecton and FDDB s label. We looked nto the mspredcton cases, and we found some faces wthout both eyes vsble are stll detected by MTCNN. Snce FDDB only labels faces wth ether one of the eyes vsble, there 4

5 Fold Accuracy True Postve Rate All Table 2. Accuracy and True postve rates are some faces not labeled, whch caused our false postve rate to go hgh. Also, some labeled faces wth extremely low lght condtons or wth other objected covered. Ths knd of faces are dffcult for MTCNN to detect. For the future work, we can mprove our model by tranng more edge cases, lke the ones mentoned above. Also, dong more evaluatons lke we dd on FDDB can help us to fnd the weakness of our model. In addton, tranng on a even larger dataset should allow the network to learn n more extreme cases and therefore have mproved performance. We can also make our MTCNN mplementaton to work on real tme face detecton. Whle the accuracy s hgh enough, we can work on other functonaltes lke face recognton or emoton recognton n the future. References [1] T. Ahonen, A. Hadd, and M. Petkänen. Face recognton wth local bnary patterns. In European conference on computer vson, pages Sprnger, [2] V. Jan and E. Learned-Mller. Fddb: A benchmark for face detecton n unconstraned settngs. Techncal Report UM-CS , Unversty of Massachusetts, Amherst, [3] R. Mer and G. Rätsch. An ntroducton to boostng and leveragng. In Advanced lectures on machne learnng, pages Sprnger, [4] H. A. Rowley, S. Baluja, and T. Kanade. Neural network-based face detecton. IEEE Transactons on pattern analyss and machne ntellgence, 20(1):23 38, [5] K. Somashekar, C. Puttamadappa, and D. Chandrappa. Face detecton by smqt features and snow classfer usng color nformaton. Internatonal Journal of Engneerng Scence and Technology, 3(2), [6] P. Vola and M. Jones. Rapd object detecton usng a boosted cascade of smple features. In Computer Vson and Pattern Recognton, CVPR Proceedngs of the 2001 IEEE Computer Socety Conference on, volume 1, pages I I. IEEE, [7] K. Zhang, Z. Zhang, Z. L, and Y. Qao. Jont face detecton and algnment usng multtask cascaded convolutonal networks. IEEE Sgnal Processng Letters, 23(10): , Oct

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

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

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

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

Fast Feature Value Searching for Face Detection

Fast Feature Value Searching for Face Detection Vol., No. 2 Computer and Informaton Scence Fast Feature Value Searchng for Face Detecton Yunyang Yan Department of Computer Engneerng Huayn Insttute of Technology Hua an 22300, Chna E-mal: areyyyke@63.com

More information

Outline. Discriminative classifiers for image recognition. Where in the World? A nearest neighbor recognition example 4/14/2011. CS 376 Lecture 22 1

Outline. Discriminative classifiers for image recognition. Where in the World? A nearest neighbor recognition example 4/14/2011. CS 376 Lecture 22 1 4/14/011 Outlne Dscrmnatve classfers for mage recognton Wednesday, Aprl 13 Krsten Grauman UT-Austn Last tme: wndow-based generc obect detecton basc ppelne face detecton wth boostng as case study Today:

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

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

3D vector computer graphics

3D vector computer graphics 3D vector computer graphcs Paolo Varagnolo: freelance engneer Padova Aprl 2016 Prvate Practce ----------------------------------- 1. Introducton Vector 3D model representaton n computer graphcs requres

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

Learning-based License Plate Detection on Edge Features

Learning-based License Plate Detection on Edge Features Learnng-based Lcense Plate Detecton on Edge Features Wng Teng Ho, Woo Hen Yap, Yong Haur Tay Computer Vson and Intellgent Systems (CVIS) Group Unverst Tunku Abdul Rahman, Malaysa wngteng_h@yahoo.com, woohen@yahoo.com,

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

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

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

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

Local Quaternary Patterns and Feature Local Quaternary Patterns

Local Quaternary Patterns and Feature Local Quaternary Patterns Local Quaternary Patterns and Feature Local Quaternary Patterns Jayu Gu and Chengjun Lu The Department of Computer Scence, New Jersey Insttute of Technology, Newark, NJ 0102, USA Abstract - Ths paper presents

More information

Parallelism for Nested Loops with Non-uniform and Flow Dependences

Parallelism for Nested Loops with Non-uniform and Flow Dependences Parallelsm for Nested Loops wth Non-unform and Flow Dependences Sam-Jn Jeong Dept. of Informaton & Communcaton Engneerng, Cheonan Unversty, 5, Anseo-dong, Cheonan, Chungnam, 330-80, Korea. seong@cheonan.ac.kr

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

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

Histogram of Template for Pedestrian Detection

Histogram of Template for Pedestrian Detection PAPER IEICE TRANS. FUNDAMENTALS/COMMUN./ELECTRON./INF. & SYST., VOL. E85-A/B/C/D, No. xx JANUARY 20xx Hstogram of Template for Pedestran Detecton Shaopeng Tang, Non Member, Satosh Goto Fellow Summary In

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

FACE detection and alignment are essential to many face

FACE detection and alignment are essential to many face IEEE SIGNAL PROCESSING LETTERS, VOL. 23, NO. 10, OCTOBER 2016 1499 Jont Face Detecton and Algnment Usng Multtask Cascaded Convolutonal Networks Kapeng Zhang, Zhanpeng Zhang, Zhfeng L, Senor Member, IEEE,

More information

A Modified Median Filter for the Removal of Impulse Noise Based on the Support Vector Machines

A Modified Median Filter for the Removal of Impulse Noise Based on the Support Vector Machines A Modfed Medan Flter for the Removal of Impulse Nose Based on the Support Vector Machnes H. GOMEZ-MORENO, S. MALDONADO-BASCON, F. LOPEZ-FERRERAS, M. UTRILLA- MANSO AND P. GIL-JIMENEZ Departamento de Teoría

More information

Research of Image Recognition Algorithm Based on Depth Learning

Research of Image Recognition Algorithm Based on Depth Learning 208 4th World Conference on Control, Electroncs and Computer Engneerng (WCCECE 208) Research of Image Recognton Algorthm Based on Depth Learnng Zhang Jan, J Xnhao Zhejang Busness College, Hangzhou, Chna,

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

Term Weighting Classification System Using the Chi-square Statistic for the Classification Subtask at NTCIR-6 Patent Retrieval Task

Term Weighting Classification System Using the Chi-square Statistic for the Classification Subtask at NTCIR-6 Patent Retrieval Task Proceedngs of NTCIR-6 Workshop Meetng, May 15-18, 2007, Tokyo, Japan Term Weghtng Classfcaton System Usng the Ch-square Statstc for the Classfcaton Subtask at NTCIR-6 Patent Retreval Task Kotaro Hashmoto

More information

Audio Event Detection and classification using extended R-FCN Approach. Kaiwu Wang, Liping Yang, Bin Yang

Audio Event Detection and classification using extended R-FCN Approach. Kaiwu Wang, Liping Yang, Bin Yang Audo Event Detecton and classfcaton usng extended R-FCN Approach Kawu Wang, Lpng Yang, Bn Yang Key Laboratory of Optoelectronc Technology and Systems(Chongqng Unversty), Mnstry of Educaton, ChongQng Unversty,

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

Corner-Based Image Alignment using Pyramid Structure with Gradient Vector Similarity

Corner-Based Image Alignment using Pyramid Structure with Gradient Vector Similarity Journal of Sgnal and Informaton Processng, 013, 4, 114-119 do:10.436/jsp.013.43b00 Publshed Onlne August 013 (http://www.scrp.org/journal/jsp) Corner-Based Image Algnment usng Pyramd Structure wth Gradent

More information

A Novel Adaptive Descriptor Algorithm for Ternary Pattern Textures

A Novel Adaptive Descriptor Algorithm for Ternary Pattern Textures A Novel Adaptve Descrptor Algorthm for Ternary Pattern Textures Fahuan Hu 1,2, Guopng Lu 1 *, Zengwen Dong 1 1.School of Mechancal & Electrcal Engneerng, Nanchang Unversty, Nanchang, 330031, Chna; 2. School

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

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

An Efficient Face Detection Method Using Adaboost and Facial Parts

An Efficient Face Detection Method Using Adaboost and Facial Parts An Effcent Face Detecton Method Usng Adaboost and Facal Parts Yasaman Heydarzadeh, Abolfazl Torogh Haghghat Computer, IT and Electronc department Azad Unversty of Qazvn Tehran, Iran heydarzadeh@ qau.ac.r,

More information

Load Balancing for Hex-Cell Interconnection Network

Load Balancing for Hex-Cell Interconnection Network Int. J. Communcatons, Network and System Scences,,, - Publshed Onlne Aprl n ScRes. http://www.scrp.org/journal/jcns http://dx.do.org/./jcns.. Load Balancng for Hex-Cell Interconnecton Network Saher Manaseer,

More information

RECOGNIZING GENDER THROUGH FACIAL IMAGE USING SUPPORT VECTOR MACHINE

RECOGNIZING GENDER THROUGH FACIAL IMAGE USING SUPPORT VECTOR MACHINE Journal of Theoretcal and Appled Informaton Technology 30 th June 06. Vol.88. No.3 005-06 JATIT & LLS. All rghts reserved. ISSN: 99-8645 www.jatt.org E-ISSN: 87-395 RECOGNIZING GENDER THROUGH FACIAL IMAGE

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

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

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

A Probabilistic Approach to Detect Urban Regions from Remotely Sensed Images Based on Combination of Local Features

A Probabilistic Approach to Detect Urban Regions from Remotely Sensed Images Based on Combination of Local Features A Probablstc Approach to Detect Urban Regons from Remotely Sensed Images Based on Combnaton of Local Features Berl Sırmaçek German Aerospace Center (DLR) Remote Sensng Technology Insttute Weßlng, 82234,

More information

Discriminative classifiers for object classification. Last time

Discriminative classifiers for object classification. Last time Dscrmnatve classfers for object classfcaton Thursday, Nov 12 Krsten Grauman UT Austn Last tme Supervsed classfcaton Loss and rsk, kbayes rule Skn color detecton example Sldng ndo detecton Classfers, boostng

More information

A Fast Content-Based Multimedia Retrieval Technique Using Compressed Data

A Fast Content-Based Multimedia Retrieval Technique Using Compressed Data A Fast Content-Based Multmeda Retreval Technque Usng Compressed Data Borko Furht and Pornvt Saksobhavvat NSF Multmeda Laboratory Florda Atlantc Unversty, Boca Raton, Florda 3343 ABSTRACT In ths paper,

More information

6.854 Advanced Algorithms Petar Maymounkov Problem Set 11 (November 23, 2005) With: Benjamin Rossman, Oren Weimann, and Pouya Kheradpour

6.854 Advanced Algorithms Petar Maymounkov Problem Set 11 (November 23, 2005) With: Benjamin Rossman, Oren Weimann, and Pouya Kheradpour 6.854 Advanced Algorthms Petar Maymounkov Problem Set 11 (November 23, 2005) Wth: Benjamn Rossman, Oren Wemann, and Pouya Kheradpour Problem 1. We reduce vertex cover to MAX-SAT wth weghts, such that the

More information

A Background Subtraction for a Vision-based User Interface *

A Background Subtraction for a Vision-based User Interface * A Background Subtracton for a Vson-based User Interface * Dongpyo Hong and Woontack Woo KJIST U-VR Lab. {dhon wwoo}@kjst.ac.kr Abstract In ths paper, we propose a robust and effcent background subtracton

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

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

Efficient Object Detection Using Cascades of Nearest Convex Model Classifiers

Efficient Object Detection Using Cascades of Nearest Convex Model Classifiers Effcent Object Detecton Usng Cascades of Nearest Convex Model Classfers Hakan Cevkalp Esksehr Osmangaz Unversty Meselk Kampusu, 26480, Esksehr Turkey hakan.cevkalp@gmal.com Bll Trggs Laboratore Jean Kuntzmann

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

Classifier Swarms for Human Detection in Infrared Imagery

Classifier Swarms for Human Detection in Infrared Imagery Classfer Swarms for Human Detecton n Infrared Imagery Yur Owechko, Swarup Medasan, and Narayan Srnvasa HRL Laboratores, LLC 3011 Malbu Canyon Road, Malbu, CA 90265 {owechko, smedasan, nsrnvasa}@hrl.com

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

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

Categorizing objects: of appearance

Categorizing objects: of appearance Categorzng objects: global and part-based models of appearance UT Austn Generc categorzaton problem 1 Challenges: robustness Realstc scenes are crowded, cluttered, have overlappng objects. Generc category

More information

Complex Numbers. Now we also saw that if a and b were both positive then ab = a b. For a second let s forget that restriction and do the following.

Complex Numbers. Now we also saw that if a and b were both positive then ab = a b. For a second let s forget that restriction and do the following. Complex Numbers The last topc n ths secton s not really related to most of what we ve done n ths chapter, although t s somewhat related to the radcals secton as we wll see. We also won t need the materal

More information

Modular PCA Face Recognition Based on Weighted Average

Modular PCA Face Recognition Based on Weighted Average odern Appled Scence odular PCA Face Recognton Based on Weghted Average Chengmao Han (Correspondng author) Department of athematcs, Lny Normal Unversty Lny 76005, Chna E-mal: hanchengmao@163.com Abstract

More information

Simulation Based Analysis of FAST TCP using OMNET++

Simulation Based Analysis of FAST TCP using OMNET++ Smulaton Based Analyss of FAST TCP usng OMNET++ Umar ul Hassan 04030038@lums.edu.pk Md Term Report CS678 Topcs n Internet Research Sprng, 2006 Introducton Internet traffc s doublng roughly every 3 months

More information

Mathematics 256 a course in differential equations for engineering students

Mathematics 256 a course in differential equations for engineering students Mathematcs 56 a course n dfferental equatons for engneerng students Chapter 5. More effcent methods of numercal soluton Euler s method s qute neffcent. Because the error s essentally proportonal to the

More information

An Improved Image Segmentation Algorithm Based on the Otsu Method

An Improved Image Segmentation Algorithm Based on the Otsu Method 3th ACIS Internatonal Conference on Software Engneerng, Artfcal Intellgence, Networkng arallel/dstrbuted Computng An Improved Image Segmentaton Algorthm Based on the Otsu Method Mengxng Huang, enjao Yu,

More information

Face Recognition by Fusing Binary Edge Feature and Second-order Mutual Information

Face Recognition by Fusing Binary Edge Feature and Second-order Mutual Information Face Recognton by Fusng Bnary Edge Feature and Second-order Mutual Informaton Jatao Song, Bejng Chen, We Wang, Xaobo Ren School of Electronc and Informaton Engneerng, Nngbo Unversty of Technology Nngbo,

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

Enhanced Face Detection Technique Based on Color Correction Approach and SMQT Features

Enhanced Face Detection Technique Based on Color Correction Approach and SMQT Features Journal of Software Engneerng and Applcatons, 2013, 6, 519-525 http://dx.do.org/10.4236/jsea.2013.610062 Publshed Onlne October 2013 (http://www.scrp.org/journal/jsea) 519 Enhanced Face Detecton Technque

More information

Improvement of Spatial Resolution Using BlockMatching Based Motion Estimation and Frame. Integration

Improvement of Spatial Resolution Using BlockMatching Based Motion Estimation and Frame. Integration Improvement of Spatal Resoluton Usng BlockMatchng Based Moton Estmaton and Frame Integraton Danya Suga and Takayuk Hamamoto Graduate School of Engneerng, Tokyo Unversty of Scence, 6-3-1, Nuku, Katsuska-ku,

More information

An Automatic Eye Detection Method for Gray Intensity Facial Images

An Automatic Eye Detection Method for Gray Intensity Facial Images www.ijcsi.org 272 An Automatc Eye Detecton Method for Gray Intensty Facal Images M. Hassaballah 1,2, Kenj Murakam 1, Shun Ido 1 1 Department of Computer Scence, Ehme Unversty, 790-8577, Japan 2 Department

More information

A New Feature of Uniformity of Image Texture Directions Coinciding with the Human Eyes Perception 1

A New Feature of Uniformity of Image Texture Directions Coinciding with the Human Eyes Perception 1 A New Feature of Unformty of Image Texture Drectons Concdng wth the Human Eyes Percepton Xng-Jan He, De-Shuang Huang, Yue Zhang, Tat-Mng Lo 2, and Mchael R. Lyu 3 Intellgent Computng Lab, Insttute of Intellgent

More information

Detection of hand grasping an object from complex background based on machine learning co-occurrence of local image feature

Detection of hand grasping an object from complex background based on machine learning co-occurrence of local image feature Detecton of hand graspng an object from complex background based on machne learnng co-occurrence of local mage feature Shnya Moroka, Yasuhro Hramoto, Nobutaka Shmada, Tadash Matsuo, Yoshak Shra Rtsumekan

More information

Gender Classification using Interlaced Derivative Patterns

Gender Classification using Interlaced Derivative Patterns Gender Classfcaton usng Interlaced Dervatve Patterns Author Shobernejad, Ameneh, Gao, Yongsheng Publshed 2 Conference Ttle Proceedngs of the 2th Internatonal Conference on Pattern Recognton (ICPR 2) DOI

More information

Multiclass Object Recognition based on Texture Linear Genetic Programming

Multiclass Object Recognition based on Texture Linear Genetic Programming Multclass Object Recognton based on Texture Lnear Genetc Programmng Gustavo Olague 1, Eva Romero 1 Leonardo Trujllo 1, and Br Bhanu 2 1 CICESE, Km. 107 carretera Tjuana-Ensenada, Mexco, olague@ccese.mx,

More information

Video-Based Facial Expression Recognition Using Local Directional Binary Pattern

Video-Based Facial Expression Recognition Using Local Directional Binary Pattern Vdeo-Based Facal Expresson Recognton Usng Local Drectonal Bnary Pattern Sahar Hooshmand, Al Jamal Avlaq, Amr Hossen Rezae Electrcal Engneerng Dept., AmrKabr Unvarsty of Technology Tehran, Iran Abstract

More information

Deep Spatial-Temporal Joint Feature Representation for Video Object Detection

Deep Spatial-Temporal Joint Feature Representation for Video Object Detection sensors Artcle Deep Spatal-Temporal Jont Feature Representaton for Vdeo Object Detecton Baojun Zhao 1,2, Boya Zhao 1,2 ID, Lnbo Tang 1,2, *, Yuq Han 1,2 and Wenzheng Wang 1,2 1 School of Informaton and

More information

Sequential Monte-Carlo Based Road Region Segmentation Algorithm with Uniform Spatial Sampling

Sequential Monte-Carlo Based Road Region Segmentation Algorithm with Uniform Spatial Sampling IPSJ Transactons on Computer Vson and Applcatons Vol.8 1 10 (Feb. 2016) [DOI: 10.2197/psjtcva.8.1] Regular Paper Sequental Monte-Carlo Based Road Regon Segmentaton Algorthm wth Unform Spatal Samplng Zdeněk

More information

Identifying Table Boundaries in Digital Documents via Sparse Line Detection

Identifying Table Boundaries in Digital Documents via Sparse Line Detection Identfyng Table Boundares n Dgtal Documents va Sparse Lne Detecton Yng Lu, Prasenjt Mtra, C. Lee Gles College of Informaton Scences and Technology The Pennsylvana State Unversty Unversty Park, PA, USA,

More information

Real-time Motion Capture System Using One Video Camera Based on Color and Edge Distribution

Real-time Motion Capture System Using One Video Camera Based on Color and Edge Distribution Real-tme Moton Capture System Usng One Vdeo Camera Based on Color and Edge Dstrbuton YOSHIAKI AKAZAWA, YOSHIHIRO OKADA, AND KOICHI NIIJIMA Graduate School of Informaton Scence and Electrcal Engneerng,

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

The Research of Support Vector Machine in Agricultural Data Classification

The Research of Support Vector Machine in Agricultural Data Classification The Research of Support Vector Machne n Agrcultural Data Classfcaton Le Sh, Qguo Duan, Xnmng Ma, Me Weng College of Informaton and Management Scence, HeNan Agrcultural Unversty, Zhengzhou 45000 Chna Zhengzhou

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

Online Detection and Classification of Moving Objects Using Progressively Improving Detectors

Online Detection and Classification of Moving Objects Using Progressively Improving Detectors Onlne Detecton and Classfcaton of Movng Objects Usng Progressvely Improvng Detectors Omar Javed Saad Al Mubarak Shah Computer Vson Lab School of Computer Scence Unversty of Central Florda Orlando, FL 32816

More information

arxiv: v2 [cs.cv] 9 Apr 2018

arxiv: v2 [cs.cv] 9 Apr 2018 Boundary-senstve Network for Portrat Segmentaton Xanzh Du 1, Xaolong Wang 2, Dawe L 2, Jngwen Zhu 2, Serafettn Tasc 2, Cameron Uprght 2, Stephen Walsh 2, Larry Davs 1 1 Computer Vson Lab, UMIACS, Unversty

More information

Learning a Class-Specific Dictionary for Facial Expression Recognition

Learning a Class-Specific Dictionary for Facial Expression Recognition BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 16, No 4 Sofa 016 Prnt ISSN: 1311-970; Onlne ISSN: 1314-4081 DOI: 10.1515/cat-016-0067 Learnng a Class-Specfc Dctonary for

More information

Multi-View Face Alignment Using 3D Shape Model for View Estimation

Multi-View Face Alignment Using 3D Shape Model for View Estimation Mult-Vew Face Algnment Usng 3D Shape Model for Vew Estmaton Yanchao Su 1, Hazhou A 1, Shhong Lao 1 Computer Scence and Technology Department, Tsnghua Unversty Core Technology Center, Omron Corporaton ahz@mal.tsnghua.edu.cn

More information

Face Tracking Using Motion-Guided Dynamic Template Matching

Face Tracking Using Motion-Guided Dynamic Template Matching ACCV2002: The 5th Asan Conference on Computer Vson, 23--25 January 2002, Melbourne, Australa. Face Trackng Usng Moton-Guded Dynamc Template Matchng Lang Wang, Tenu Tan, Wemng Hu atonal Laboratory of Pattern

More information

Feature Reduction and Selection

Feature Reduction and Selection Feature Reducton and Selecton Dr. Shuang LIANG School of Software Engneerng TongJ Unversty Fall, 2012 Today s Topcs Introducton Problems of Dmensonalty Feature Reducton Statstc methods Prncpal Components

More information

Computer Aided Drafting, Design and Manufacturing Volume 25, Number 2, June 2015, Page 14

Computer Aided Drafting, Design and Manufacturing Volume 25, Number 2, June 2015, Page 14 Computer Aded Draftng, Desgn and Manufacturng Volume 5, Number, June 015, Page 14 CADDM Face Recognton Algorthm Fusng Monogenc Bnary Codng and Collaboratve Representaton FU Yu-xan, PENG Lang-yu College

More information

BioTechnology. An Indian Journal FULL PAPER. Trade Science Inc.

BioTechnology. An Indian Journal FULL PAPER. Trade Science Inc. [Type text] [Type text] [Type text] ISSN : 0974-74 Volume 0 Issue BoTechnology 04 An Indan Journal FULL PAPER BTAIJ 0() 04 [684-689] Revew on Chna s sports ndustry fnancng market based on market -orented

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

Image Representation & Visualization Basic Imaging Algorithms Shape Representation and Analysis. outline

Image Representation & Visualization Basic Imaging Algorithms Shape Representation and Analysis. outline mage Vsualzaton mage Vsualzaton mage Representaton & Vsualzaton Basc magng Algorthms Shape Representaton and Analyss outlne mage Representaton & Vsualzaton Basc magng Algorthms Shape Representaton and

More information

Training of Kernel Fuzzy Classifiers by Dynamic Cluster Generation

Training of Kernel Fuzzy Classifiers by Dynamic Cluster Generation Tranng of Kernel Fuzzy Classfers by Dynamc Cluster Generaton Shgeo Abe Graduate School of Scence and Technology Kobe Unversty Nada, Kobe, Japan abe@eedept.kobe-u.ac.jp Abstract We dscuss kernel fuzzy classfers

More information

Comparison Study of Textural Descriptors for Training Neural Network Classifiers

Comparison Study of Textural Descriptors for Training Neural Network Classifiers Comparson Study of Textural Descrptors for Tranng Neural Network Classfers G.D. MAGOULAS (1) S.A. KARKANIS (1) D.A. KARRAS () and M.N. VRAHATIS (3) (1) Department of Informatcs Unversty of Athens GR-157.84

More information

CAN COMPUTERS LEARN FASTER? Seyda Ertekin Computer Science & Engineering The Pennsylvania State University

CAN COMPUTERS LEARN FASTER? Seyda Ertekin Computer Science & Engineering The Pennsylvania State University CAN COMPUTERS LEARN FASTER? Seyda Ertekn Computer Scence & Engneerng The Pennsylvana State Unversty sertekn@cse.psu.edu ABSTRACT Ever snce computers were nvented, manknd wondered whether they mght be made

More information

Course Introduction. Algorithm 8/31/2017. COSC 320 Advanced Data Structures and Algorithms. COSC 320 Advanced Data Structures and Algorithms

Course Introduction. Algorithm 8/31/2017. COSC 320 Advanced Data Structures and Algorithms. COSC 320 Advanced Data Structures and Algorithms Course Introducton Course Topcs Exams, abs, Proects A quc loo at a few algorthms 1 Advanced Data Structures and Algorthms Descrpton: We are gong to dscuss algorthm complexty analyss, algorthm desgn technques

More information

Reducing Frame Rate for Object Tracking

Reducing Frame Rate for Object Tracking Reducng Frame Rate for Object Trackng Pavel Korshunov 1 and We Tsang Oo 2 1 Natonal Unversty of Sngapore, Sngapore 11977, pavelkor@comp.nus.edu.sg 2 Natonal Unversty of Sngapore, Sngapore 11977, oowt@comp.nus.edu.sg

More information

Positive Semi-definite Programming Localization in Wireless Sensor Networks

Positive Semi-definite Programming Localization in Wireless Sensor Networks Postve Sem-defnte Programmng Localzaton n Wreless Sensor etworks Shengdong Xe 1,, Jn Wang, Aqun Hu 1, Yunl Gu, Jang Xu, 1 School of Informaton Scence and Engneerng, Southeast Unversty, 10096, anjng Computer

More information

Face Recognition University at Buffalo CSE666 Lecture Slides Resources:

Face Recognition University at Buffalo CSE666 Lecture Slides Resources: Face Recognton Unversty at Buffalo CSE666 Lecture Sldes Resources: http://www.face-rec.org/algorthms/ Overvew of face recognton algorthms Correlaton - Pxel based correspondence between two face mages Structural

More information

Extraction of Texture Information from Fuzzy Run Length Matrix

Extraction of Texture Information from Fuzzy Run Length Matrix Internatonal Journal of Computer Applcatons (0975 8887) Volume 55 o.1, October 01 Extracton of Texture Informaton from Fuzzy Run Length Matrx Y. Venkateswarlu Head Dept. of CSE&IT Chatanya Insttuteof Engg.

More information

Real-time Joint Tracking of a Hand Manipulating an Object from RGB-D Input

Real-time Joint Tracking of a Hand Manipulating an Object from RGB-D Input Real-tme Jont Tracng of a Hand Manpulatng an Object from RGB-D Input Srnath Srdhar 1 Franzsa Mueller 1 Mchael Zollhöfer 1 Dan Casas 1 Antt Oulasvrta 2 Chrstan Theobalt 1 1 Max Planc Insttute for Informatcs

More information

A fast algorithm for color image segmentation

A fast algorithm for color image segmentation Unersty of Wollongong Research Onlne Faculty of Informatcs - Papers (Arche) Faculty of Engneerng and Informaton Scences 006 A fast algorthm for color mage segmentaton L. Dong Unersty of Wollongong, lju@uow.edu.au

More information

Focal Loss in 3D Object Detection

Focal Loss in 3D Object Detection 1 Focal Loss n 3D Object Detecton eng Yun1 Le Ta2 Yuan Wang2 Chengju Lu3 Mng Lu2 Fg. 1. Upper two rows show projected 3D object detecton results from the detector traned wth bnary cross entropy. Lower

More information

Infrared face recognition using texture descriptors

Infrared face recognition using texture descriptors Infrared face recognton usng texture descrptors Moulay A. Akhlouf*, Abdelhakm Bendada Computer Vson and Systems Laboratory, Laval Unversty, Quebec, QC, Canada G1V0A6 ABSTRACT Face recognton s an area of

More information

MATHEMATICS FORM ONE SCHEME OF WORK 2004

MATHEMATICS FORM ONE SCHEME OF WORK 2004 MATHEMATICS FORM ONE SCHEME OF WORK 2004 WEEK TOPICS/SUBTOPICS LEARNING OBJECTIVES LEARNING OUTCOMES VALUES CREATIVE & CRITICAL THINKING 1 WHOLE NUMBER Students wll be able to: GENERICS 1 1.1 Concept of

More information

Accurate Overlay Text Extraction for Digital Video Analysis

Accurate Overlay Text Extraction for Digital Video Analysis Accurate Overlay Text Extracton for Dgtal Vdeo Analyss Dongqng Zhang, and Shh-Fu Chang Electrcal Engneerng Department, Columba Unversty, New York, NY 10027. (Emal: dqzhang, sfchang@ee.columba.edu) Abstract

More information

Adaptive Silhouette Extraction and Human Tracking in Dynamic. Environments 1

Adaptive Silhouette Extraction and Human Tracking in Dynamic. Environments 1 Adaptve Slhouette Extracton and Human Trackng n Dynamc Envronments 1 X Chen, Zhha He, Derek Anderson, James Keller, and Marjore Skubc Department of Electrcal and Computer Engneerng Unversty of Mssour,

More information

Design of Structure Optimization with APDL

Design of Structure Optimization with APDL Desgn of Structure Optmzaton wth APDL Yanyun School of Cvl Engneerng and Archtecture, East Chna Jaotong Unversty Nanchang 330013 Chna Abstract In ths paper, the desgn process of structure optmzaton wth

More information

Face Recognition Method Based on Within-class Clustering SVM

Face Recognition Method Based on Within-class Clustering SVM Face Recognton Method Based on Wthn-class Clusterng SVM Yan Wu, Xao Yao and Yng Xa Department of Computer Scence and Engneerng Tong Unversty Shangha, Chna Abstract - A face recognton method based on Wthn-class

More information