Face Tracking with learning Half-Face Template

Size: px
Start display at page:

Download "Face Tracking with learning Half-Face Template"

Transcription

1 Face Tracking with learning Half-Face Template Jun ya Matsuyama 1 and Kuniaki Uehara 1 Department of Computer and Systems Engineering, Kobe University, 1-1 Rokko-dai, Nada, Kobe , Japan junya@ai.cs.scitec.kobe-u.ac.jp, uehara@kobe-u.ac.jp Abstract. In this paper, we present an algorithm to detect and track both frontal and side faces in video clips. By means of learning Haar- Like features of human faces and boosting the learning accuracy in the InfoBoost algorithm, our algorithm can detect frontal faces in video clips. We map these Haar-Like features to a 3D model to create the classifier that can detect both frontal and side faces. Since it cost a huge time to detect and track faces using the 3D model, we project the Haar-Like features from the 3D model to a 2D space for generating various face orientations before the face tracking process begins. By using them, we can detect even side faces in real time and it is not necessary to learn frontal faces and side faces separately. 1 Introduction In recent years there has been a great deal of interest in detection and tracking of human faces in video clips. To recognize people in a video clip, we must locate their faces. To design a robot capable of interacting with humans, it is required that the robots can detect human faces within their sight and recognize whom they are interacting with. In this case, the speed of face detection is most important. Additionally when face detection is used in surveillance systems, the speed of face detection is important, but it is most important that the system can detect all faces in the video clips. Recently, Viola et al. propose a very fast approach for multiple face detection [7], which uses AdaBoost algorithm [2]. This algorithm learns fast strong classifier by applying AdaBoost to a weak learner. Then a classifier is applied to sub images of the target image, and this algorithm detects faces in the target image. However, their algorithm has two problems. Firstly, AdaBoost has two problems to detect human faces, which we will discuss in section 3.1 and 3.2. Secondly, this algorithm can detect only frontal faces. Some algorithms, which can detect non-frontal faces [4 6, 8], have already been proposed, but they cannot detect and track more than one face, and these algorithms need to be initialized with face parameters (location, direction, scale etc). In this paper, we substitute InfoBoost algorithm [1], which is based on information-theoretic approach, for AdaBoost algorithm, which is based on decisiontheoretic approach, to solve first problem and to improve the precision. Additionally, our algorithm does not learn the whole human face but half of it to

2 2 Jun ya Matsuyama et al. reduce learning cost and to improve the precision. We map these half-face templates to a 3D model, and reproduce the whole-face template from the 3D model. So we can even detect faces which are even rotated around the vertical axis, by applying the generated whole-face template. 2 HAAR-LIKE FEATURES In this paper, Haar-Like features are used to classify the images into face images and non-face images. Some samples of Haar-Like features are shown in Figure 1. Basically, the brightness pattern of eyes distinguishes the face from the background. (a) is an original facial image. (b) measures the difference in brightness between the region of the eyes and the region under them. As is shown in (b), the brightness of the eyes is usually darker than their underneath in a image. (c) measures the difference in brightness between the region of the eyes and the region between them. As is shown in (c), the eyes are usually darker than the regions between them in a image. Thus, an image can be classified as a facial or a non-facial image based on the brightness pattern described above. These features in (b) and (c) are generated from feature prototypes (Figure 2) by dilating these prototypes vertically and horizontally. The difference in the average brightness between the black region and the white region of features is used as a feature value, which is used as a parameter to classify images into faces or non-faces, and the threshold of this feature value is calculated from a training set. Viola et al. use feature prototype (a)-(d) shown in Figure 2, but we use four additional prototypes (e)-(f). From prototype (e), we can generate the feature, which measure the difference in brightness between the region of the mouth and its both ends. From prototype (f), (g), we can generate the feature, which will measure the difference in brightness between the region of the mouth or the eye and the top and bottom of it. From prototype (e), we can generate the feature, which will measures the difference in brightness between the region of the eye, the nose or the mouth, and the region around it. If we add these effective feature prototypes like (e)-(f), the learning time will be somewhat increased, but the precision of the classification will be improved. Also if we add some compound feature prototypes like (c)-(h), the time of the classification will be decreased. For example, feature prototype (e) can be considered as the prototype which is made by combining two prototypes (a) together. In the regions where the features generated from prototype (e) can be used, we need calculate twice for the value of the feature generated from the prototype (a). But now we need only calculate once for the value of the feature generated from the prototype (e). So the time complexity is decreased for these regions, and the detection time can be reduced.

3 Face Tracking with learning Half-Face Template 3 (a) (b) Fig. 1. Feature Example (c) (a) (b) (c) (d) (e) (f) (g) (h) Fig. 2. Feature Prototypes 3 APPLYING INFOBOOST Classification with Haar-Like features is fast, but it is too simple and the precision is not so good. So we apply Boosting algorithm to the classifier with Haar-Like features to generate a fast strong classifier. We use InfoBoost to solve these problems, because there are two problems in AdaBoost RELIABILITY OF WEAK CLASSIFIER RESULT FOR EACH SAMPLE Weak classifiers generated in the AdaBoost process do not regard the reliability of the classification results for each sample, so the classifiers which classify the sample with high reliability and the classifiers which classify the sample with low reliability are combined in the same ways at the last. For example, there are nine weak classifiers generated in AdaBoost process. If four of them classify a sample into face image with 95% accuracy, and five of them classify the same sample into non-face image with 55% accuracy, the image will be classified into non-face image. If we think about the reliability of these classification results, the sample must be classified into face image. We must think about the reliability of the classification results to classify images more accurately. 3.2 BASED ON DECISION-THEORETIC AdaBoost algorithm only thinks about if the classification is true or false, when the weights are updated. But actually there are four cases, a face image classified into a face image, a non-face image classified into face image, a face image

4 4 Jun ya Matsuyama et al. classified into a non-face image, a non-face image classified into a non-face image. The incidence and accuracy of these classifications are not always the same. For example, in a certain round of AdaBoost, if the number of face images which are classified into non-face images and the number of non-face images which are classified into face images are nearly equal, all we are required to do is to decrease the weights of correctly classified samples and to increase the weights of incorrectly classified samples. But, if the number of misclassified nonface images is larger than the number of misclassified face images, the sample images which are misclassified non-face images will be classified correctly in next round or later. But the misclassified face images may not be correctly classified, because AdaBoost does not take care of the reason of misclassification. We should not pay attention to only if the classification is true or false, but we must also consider the correct classes, and when we update the weights of each sample images we must regard these four cases carefully. 3.3 INTRODUCTION OF INFOBOOST In this paper, we consider these two problems, and use InfoBoost algorithm, which is a modification of AdaBoost. we propose three points where InfoBoost and AdaBoost differ. First, InfoBoost repeats the round T times (t = 1,, T ) in learning process. In round t, weak hypothesis h t is shown by h t : X R. This represents that the hypothesis is calculated as hypothesis with evaluation of reliability. In order to make it easy to handle, we restrict the region of hypotheses h t to [ 1, +1]. The sign of h t represents the class of prediction ( 1 or +1), and the absolute value of h t represents magnitude of reliability. For example, if h 1 (x 1 ) = 0.8, h 1 classifies the sample x 1 into the class 1 with the reliability value 0.8. Second, the accuracy of negative prediction α t [ 1] and the acculacy of positive prediction α t [+1] are calculated. These values reflect the magnitude of reliability and the precision of classification for each sample. These two parameters are treated as one parameter α t. If hypothesis h t classifies x i into the class 1, α t (h t (x i )) is α t [ 1] if hypothesis h t classifies x i into the class +1, α t (h t (x i )) is α t [+1]. Third, the distribution D t+1 is updated with α t (h t (x i )), label y i, hypothesis h t (x i ) with evaluation of reliability. Executing this operation, the weights of samples, which are classified correctly by hypothesis h t (x i ), are decreased, and the weights of samples, which is not classified incorrectly by hypothesis h t (x i ), are increased. We repeat these processes T times, and calculate the final hypothesis H with the resulting T hypothesis. Hypotheses h t with evaluations of reliability are voted with α t (h t (x i )) as weights. If the result of voting is a negative value, we output 1 as the final hypothesis, and if the result of voting is a positive value, we output +1 as the final hypothesis. When we apply InfoBoost to weak learners, it is necessary to show how correct the classification results of training samples are. We calculate the feature value for each training sample, and we calculate the difference d of the feature

5 Face Tracking with learning Half-Face Template 5 value f and the threshold t (d = f t). The signs of differences represent classification result. If the absolute value of d is large enough, the classification result is trusty, whereas if the value is too small, the classification result is not so trusty. Obtaining the differences of feature values and thresholds, we can express the classification result and the reliability of it for each sample. So we use the differences of the feature values and the thresholds as the classification result with evaluation of reliability. Because InfoBoost is based on information-theoretic approach, it has the benefit of not only the improvement of the precision of classification, but also it can provide some flexibility for the classifier. For example, in surveillance systems, we must detect all human faces, but it is allowed to detect few non-faces as faces. By increasing the weights of face samples classified into non-faces, we can adapt classifiers for surveillance systems. InfoBoost can bias the classification basis based on the importance of each of the four case (face classified into face, face classified into non-face, non-face classified into face, non-face classified into non-face) by biased the rules of updating weight. 4 PROJECTION TO 3D MODEL AND LEARNING HALF-FACE TEMPlATE If we use the classifier that is generated by the whole face images, we can detect only frontal faces. However, in video clips, the probability of complete frontal faces is not high. Most of them are side faces. Consequently, we map the classifier learned from facial features to a 3D model (Figure 3(a) (b)). The 3D model is consist of three area ((r),(c),(l) in Figure 3(b)). By using this 3D template, the classifier will be able to detect not only frontal faces but also side shots of faces. However, if we use 3D model in face detection, time complexity is increased and detection speed is decreased. Consequently, we create new classifiers by rotating the 3D model around the vertical axis and by projecting the 3D model classifier back to 2D again (Figure 3(c) (d)). If the rotation angle is θ (positive for clockwise rotation), the width w r of area (r) is modified to cos(θ π 4 ) cos w π r, and 4 the width w c of area (c) is modified to cos(θ)w c, and the width w l of area (l) is modified to cos(θ+ π 4 ) cos π 4 w l. We execute these processes in every 10 degrees of rotation angles, and use these classifiers in parallel to prevent the increase of the time complexity. But, there is some problem. When the 3D model is rotated enough, some feature rectangles in 3D model may be hidden and we cannot use these features. So we do not use the whole faces but use half-faces for learning samples, and because of symmetry of a face, we express the whole face by combining reversed facial features with the original ones (Figure 3(a)). In doing so, even if the 3D model is rotated, we can use all features of either right half-face or left halfface. Additionally because of learning half faces, we can free from the different illumination states between left and right faces. The classifier generated from boosting algorithm is a set of weak classifiers using Haar-Like features. Each weak classifier consists of three elements, coor-

6 6 Jun ya Matsuyama et al. Reverse Feature 4 4 Mapping (r) (c) (l) (a) Feature in 2D (r) (c) (l) Rotate (b) 3D-Model (r) (c) (l) Projection (c) Rotated Feature with 3D-Model (d) Rotated Feature in 2D Fig. 3. Feature Projection dinates of the reference points, width and height of the rectangles, and thresholds of Haar-Like features. So the features are easily mapped to the 3D model shown in Figure 3(b). Additionally we confine that a 3D model can be rotated only around the vertical axis, so the features is changed only in horizontal axis. Therefore the weak classifier, which generated by projecting the features from 3D model to 2D, is made by moving, expanding and shrinking the Haar-Like feature rectangles of the original weak classifier horizontally. We extend the configuration of the weak classifier cascade to use half-face templates with 3D model. Classification of images is very complicated. If we generate only one classifier by boosting algorithm, the total number of weak classifiers and the time complexity will be very huge. We generate the cascade of classifiers by dividing the set of weak classifiers to some sets to reduce the time complexity. When we use half-face templates, we evaluate them separately, and aggregate these evaluation results. So the classifier consists of two classifier

7 Face Tracking with learning Half-Face Template 7 cascades (Figure 4). In the case when the target sample is rejected in early stage on one of the classifier cascades, the calculation on the other of the classifier cascades is not needed. So we combine these classifier cascades as shown in Figure 5. By using this new cascade, unnecessary process is avoided. right half of part images True True True... True True False False False False part images split input data classified as a non-face False AND True input data classified as a face left half of part images False False False False True True True... True True Fig. 4. Two Classifier Cascades input data classified as a non-face right half of part images False False False False... part images split left half of part images True True True True... True True True... False False False False True input data classified as a face input data classified as a non-face Fig. 5. Combining Two Classifier Cascades 5 EXPERIMENTS We performed two experiments of the face detection. First, we compare the precision of classifier generated by InfoBoost to AdaBoost. We use Yale Face Database B [3] as positive samples. We use half of them as the training set, and use the rest as the test set. The result of our experiment is shown in Figure 6. The horizontal axis shows false positive rate and the vertical axis shows true positive rate. The horizontal axis is logarithmic axis to show the difference of the graphs clearly. This graph shows the precision of InfoBoost is higher than that of AdaBoost. Second, we perform the experiment of face tracking with 3D model. The snapshots of the tracking result are shown in Figure 7. The rectangles show where faces are detected by this algorithm on the image. The two lines in the

8 8 Jun ya Matsuyama et al Hit Rate AdaBoost InfoBoost False Alarm Rate 1e-05 Fig. 6. Precision of Classifier rectangles show the position of eyes. It shows that we can detect not only frontal faces but also side faces. We can detect faces in an image, which is 320 by 240 pixel size, in about 0.05 seconds on 3.2GHz Pentium 4. Fig. 7. Snapshots of Tracking Result

9 Face Tracking with learning Half-Face Template 9 6 CONCLUSIONS AND FUTURE WORK In this paper, we tried to improve the precision of classifier by using InfoBoost algorithm, and tried to detect not only frontal faces but also side faces by using 3D model and half-face templates. But we cannot detect faces rotated around horizontal axis, or the axis which is vertical for image. If we rotate the 3D model around these axes, the feature rectangles is deformed and become non-rectangle. We must think about the fast algorithm to calculate these feature values. In the process of extracting sub images from the target image, if we use skin colors to detect face candidate regions, the precision of classifier will be improved and time complexity will be reduced. References 1. J. A. Aslam. Improving Algorithms for Boosting. In Proc. of 13th Annual Conference on Computational Learning Theory (COLT 2000), pages , Y. Freund and R. E. Schapire. Experiments with a New Boosting Algorithm. In Proc. of 13th International Conference on Machine Learning (ICML 96), pages , A. Georghiades, P. Belhumeur, and D. Kriegman. From Few to Many: Illumination Cone Models for Face Recognition under Variable Lighting and Pose. IEEE Trans. Pattern Anal. Mach. Intelligence, 23(6): , R. Gross, I. Matthews, and S. Baker. Constructing and fitting Active Appearance Models with occlusion. In Conference on Computer Vision and Pattern Recognition (CVPR 04) Workshop on Face Processing in Video (FPIV 04), P. P. Pradeep and P. F. Whelan. Tracking of Facial Features Using Deformable Triangles. In OPTO-Ireland 2002: Optical Metrology, Imaging, and Machine Vision, Proc. SPIE, volume 4877, pages , D. A. Ross, J. Lim, and M.-H. Yang. Adaptive Probabilistic Visual Tracking with Incremental Subspace Update. In Proc. of Eighth European Conference on Computer Vision (ECCV 2004), volume 2, pages , P. Viola and M. Jones. Rapid Object Detection using a Boosted Cascade of Simple Features. In Proc. of IEEE Conf. on Computer Vision and Pattern Recognition, pages , Z. Zhu and Q. Ji. Real Time 3D Face Pose Tracking From an Uncalibrated Camera. In Conference on Computer Vision and Pattern Recognition (CVPR 04) Workshop on Face Processing in Video (FPIV 04), 2004.

Robust Real-Time Face Detection

Robust Real-Time Face Detection Robust Real-Time Face Detection International Journal of Computer Vision 57(2), 137 154, 2004 Paul Viola, Michael Jones 授 課 教 授 : 林 信 志 博 士 報 告 者 : 林 宸 宇 報 告 日 期 :96.12.18 Outline Introduction The Boost

More information

Active Learning with Boosting for Spam Detection

Active Learning with Boosting for Spam Detection Active Learning with Boosting for Spam Detection Nikhila Arkalgud Last update: March 22, 2008 Active Learning with Boosting for Spam Detection Last update: March 22, 2008 1 / 38 Outline 1 Spam Filters

More information

International Journal of Advanced Information in Arts, Science & Management Vol.2, No.2, December 2014

International Journal of Advanced Information in Arts, Science & Management Vol.2, No.2, December 2014 Efficient Attendance Management System Using Face Detection and Recognition Arun.A.V, Bhatath.S, Chethan.N, Manmohan.C.M, Hamsaveni M Department of Computer Science and Engineering, Vidya Vardhaka College

More information

Evaluation of Optimizations for Object Tracking Feedback-Based Head-Tracking

Evaluation of Optimizations for Object Tracking Feedback-Based Head-Tracking Evaluation of Optimizations for Object Tracking Feedback-Based Head-Tracking Anjo Vahldiek, Ansgar Schneider, Stefan Schubert Baden-Wuerttemberg State University Stuttgart Computer Science Department Rotebuehlplatz

More information

Face detection is a process of localizing and extracting the face region from the

Face detection is a process of localizing and extracting the face region from the Chapter 4 FACE NORMALIZATION 4.1 INTRODUCTION Face detection is a process of localizing and extracting the face region from the background. The detected face varies in rotation, brightness, size, etc.

More information

Boosting. riedmiller@informatik.uni-freiburg.de

Boosting. riedmiller@informatik.uni-freiburg.de . Machine Learning Boosting Prof. Dr. Martin Riedmiller AG Maschinelles Lernen und Natürlichsprachliche Systeme Institut für Informatik Technische Fakultät Albert-Ludwigs-Universität Freiburg riedmiller@informatik.uni-freiburg.de

More information

Open-Set Face Recognition-based Visitor Interface System

Open-Set Face Recognition-based Visitor Interface System Open-Set Face Recognition-based Visitor Interface System Hazım K. Ekenel, Lorant Szasz-Toth, and Rainer Stiefelhagen Computer Science Department, Universität Karlsruhe (TH) Am Fasanengarten 5, Karlsruhe

More information

Local features and matching. Image classification & object localization

Local features and matching. Image classification & object localization Overview Instance level search Local features and matching Efficient visual recognition Image classification & object localization Category recognition Image classification: assigning a class label to

More information

CS231M Project Report - Automated Real-Time Face Tracking and Blending

CS231M Project Report - Automated Real-Time Face Tracking and Blending CS231M Project Report - Automated Real-Time Face Tracking and Blending Steven Lee, slee2010@stanford.edu June 6, 2015 1 Introduction Summary statement: The goal of this project is to create an Android

More information

Ensemble Methods. Knowledge Discovery and Data Mining 2 (VU) (707.004) Roman Kern. KTI, TU Graz 2015-03-05

Ensemble Methods. Knowledge Discovery and Data Mining 2 (VU) (707.004) Roman Kern. KTI, TU Graz 2015-03-05 Ensemble Methods Knowledge Discovery and Data Mining 2 (VU) (707004) Roman Kern KTI, TU Graz 2015-03-05 Roman Kern (KTI, TU Graz) Ensemble Methods 2015-03-05 1 / 38 Outline 1 Introduction 2 Classification

More information

Automatic Maritime Surveillance with Visual Target Detection

Automatic Maritime Surveillance with Visual Target Detection Automatic Maritime Surveillance with Visual Target Detection Domenico Bloisi, PhD bloisi@dis.uniroma1.it Maritime Scenario Maritime environment represents a challenging scenario for automatic video surveillance

More information

An Active Head Tracking System for Distance Education and Videoconferencing Applications

An Active Head Tracking System for Distance Education and Videoconferencing Applications An Active Head Tracking System for Distance Education and Videoconferencing Applications Sami Huttunen and Janne Heikkilä Machine Vision Group Infotech Oulu and Department of Electrical and Information

More information

Practical Tour of Visual tracking. David Fleet and Allan Jepson January, 2006

Practical Tour of Visual tracking. David Fleet and Allan Jepson January, 2006 Practical Tour of Visual tracking David Fleet and Allan Jepson January, 2006 Designing a Visual Tracker: What is the state? pose and motion (position, velocity, acceleration, ) shape (size, deformation,

More information

Application of Face Recognition to Person Matching in Trains

Application of Face Recognition to Person Matching in Trains Application of Face Recognition to Person Matching in Trains May 2008 Objective Matching of person Context : in trains Using face recognition and face detection algorithms With a video-surveillance camera

More information

The Role of Size Normalization on the Recognition Rate of Handwritten Numerals

The Role of Size Normalization on the Recognition Rate of Handwritten Numerals The Role of Size Normalization on the Recognition Rate of Handwritten Numerals Chun Lei He, Ping Zhang, Jianxiong Dong, Ching Y. Suen, Tien D. Bui Centre for Pattern Recognition and Machine Intelligence,

More information

A new Method for Face Recognition Using Variance Estimation and Feature Extraction

A new Method for Face Recognition Using Variance Estimation and Feature Extraction A new Method for Face Recognition Using Variance Estimation and Feature Extraction Walaa Mohamed 1, Mohamed Heshmat 2, Moheb Girgis 3 and Seham Elaw 4 1, 2, 4 Faculty of science, Mathematical and Computer

More information

HANDS-FREE PC CONTROL CONTROLLING OF MOUSE CURSOR USING EYE MOVEMENT

HANDS-FREE PC CONTROL CONTROLLING OF MOUSE CURSOR USING EYE MOVEMENT International Journal of Scientific and Research Publications, Volume 2, Issue 4, April 2012 1 HANDS-FREE PC CONTROL CONTROLLING OF MOUSE CURSOR USING EYE MOVEMENT Akhil Gupta, Akash Rathi, Dr. Y. Radhika

More information

Neural Network based Vehicle Classification for Intelligent Traffic Control

Neural Network based Vehicle Classification for Intelligent Traffic Control Neural Network based Vehicle Classification for Intelligent Traffic Control Saeid Fazli 1, Shahram Mohammadi 2, Morteza Rahmani 3 1,2,3 Electrical Engineering Department, Zanjan University, Zanjan, IRAN

More information

Video Surveillance System for Security Applications

Video Surveillance System for Security Applications Video Surveillance System for Security Applications Vidya A.S. Department of CSE National Institute of Technology Calicut, Kerala, India V. K. Govindan Department of CSE National Institute of Technology

More information

SYMMETRIC EIGENFACES MILI I. SHAH

SYMMETRIC EIGENFACES MILI I. SHAH SYMMETRIC EIGENFACES MILI I. SHAH Abstract. Over the years, mathematicians and computer scientists have produced an extensive body of work in the area of facial analysis. Several facial analysis algorithms

More information

Random Forest Based Imbalanced Data Cleaning and Classification

Random Forest Based Imbalanced Data Cleaning and Classification Random Forest Based Imbalanced Data Cleaning and Classification Jie Gu Software School of Tsinghua University, China Abstract. The given task of PAKDD 2007 data mining competition is a typical problem

More information

What is the Right Illumination Normalization for Face Recognition?

What is the Right Illumination Normalization for Face Recognition? What is the Right Illumination Normalization for Face Recognition? Aishat Mahmoud Dan-ali Department of Computer Science and Engineering The American University in Cairo AUC Avenue, P.O. Box 74, New Cairo

More information

Classroom Monitoring System by Wired Webcams and Attendance Management System

Classroom Monitoring System by Wired Webcams and Attendance Management System Classroom Monitoring System by Wired Webcams and Attendance Management System Sneha Suhas More, Amani Jamiyan Madki, Priya Ranjit Bade, Upasna Suresh Ahuja, Suhas M. Patil Student, Dept. of Computer, KJCOEMR,

More information

Parallelized Architecture of Multiple Classifiers for Face Detection

Parallelized Architecture of Multiple Classifiers for Face Detection Parallelized Architecture of Multiple s for Face Detection Author(s) Name(s) Author Affiliation(s) E-mail Abstract This paper presents a parallelized architecture of multiple classifiers for face detection

More information

Index Terms: Face Recognition, Face Detection, Monitoring, Attendance System, and System Access Control.

Index Terms: Face Recognition, Face Detection, Monitoring, Attendance System, and System Access Control. Modern Technique Of Lecture Attendance Using Face Recognition. Shreya Nallawar, Neha Giri, Neeraj Deshbhratar, Shamal Sane, Trupti Gautre, Avinash Bansod Bapurao Deshmukh College Of Engineering, Sewagram,

More information

Template-based Eye and Mouth Detection for 3D Video Conferencing

Template-based Eye and Mouth Detection for 3D Video Conferencing Template-based Eye and Mouth Detection for 3D Video Conferencing Jürgen Rurainsky and Peter Eisert Fraunhofer Institute for Telecommunications - Heinrich-Hertz-Institute, Image Processing Department, Einsteinufer

More information

L25: Ensemble learning

L25: Ensemble learning L25: Ensemble learning Introduction Methods for constructing ensembles Combination strategies Stacked generalization Mixtures of experts Bagging Boosting CSCE 666 Pattern Analysis Ricardo Gutierrez-Osuna

More information

Rapid Object Detection using a Boosted Cascade of Simple Features

Rapid Object Detection using a Boosted Cascade of Simple Features ACCEPTED CONFERENCE ON COMPUTER VISION AND PATTERN RECOGNITION 2001 Rapid Object Detection using a Boosted Cascade of Simple Features Paul Viola Michael Jones viola@merlcom mjones@crldeccom Mitsubishi

More information

FACE RECOGNITION BASED ATTENDANCE MARKING SYSTEM

FACE RECOGNITION BASED ATTENDANCE MARKING SYSTEM Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 2, February 2014,

More information

A Study of Automatic License Plate Recognition Algorithms and Techniques

A Study of Automatic License Plate Recognition Algorithms and Techniques A Study of Automatic License Plate Recognition Algorithms and Techniques Nima Asadi Intelligent Embedded Systems Mälardalen University Västerås, Sweden nai10001@student.mdh.se ABSTRACT One of the most

More information

Naive-Deep Face Recognition: Touching the Limit of LFW Benchmark or Not?

Naive-Deep Face Recognition: Touching the Limit of LFW Benchmark or Not? Naive-Deep Face Recognition: Touching the Limit of LFW Benchmark or Not? Erjin Zhou zej@megvii.com Zhimin Cao czm@megvii.com Qi Yin yq@megvii.com Abstract Face recognition performance improves rapidly

More information

Introduction to Machine Learning and Data Mining. Prof. Dr. Igor Trajkovski trajkovski@nyus.edu.mk

Introduction to Machine Learning and Data Mining. Prof. Dr. Igor Trajkovski trajkovski@nyus.edu.mk Introduction to Machine Learning and Data Mining Prof. Dr. Igor Trajkovski trajkovski@nyus.edu.mk Ensembles 2 Learning Ensembles Learn multiple alternative definitions of a concept using different training

More information

Interactive person re-identification in TV series

Interactive person re-identification in TV series Interactive person re-identification in TV series Mika Fischer Hazım Kemal Ekenel Rainer Stiefelhagen CV:HCI lab, Karlsruhe Institute of Technology Adenauerring 2, 76131 Karlsruhe, Germany E-mail: {mika.fischer,ekenel,rainer.stiefelhagen}@kit.edu

More information

Interactive Offline Tracking for Color Objects

Interactive Offline Tracking for Color Objects Interactive Offline Tracking for Color Objects Yichen Wei Jian Sun Xiaoou Tang Heung-Yeung Shum Microsoft Research Asia, Beijing, China {yichenw,jiansun,xitang,hshum}@microsoft.com Abstract In this paper,

More information

Visual Structure Analysis of Flow Charts in Patent Images

Visual Structure Analysis of Flow Charts in Patent Images Visual Structure Analysis of Flow Charts in Patent Images Roland Mörzinger, René Schuster, András Horti, and Georg Thallinger JOANNEUM RESEARCH Forschungsgesellschaft mbh DIGITAL - Institute for Information

More information

A Comparison of Photometric Normalisation Algorithms for Face Verification

A Comparison of Photometric Normalisation Algorithms for Face Verification A Comparison of Photometric Normalisation Algorithms for Face Verification James Short, Josef Kittler and Kieron Messer Centre for Vision, Speech and Signal Processing University of Surrey Guildford, Surrey,

More information

Data Mining Practical Machine Learning Tools and Techniques

Data Mining Practical Machine Learning Tools and Techniques Ensemble learning Data Mining Practical Machine Learning Tools and Techniques Slides for Chapter 8 of Data Mining by I. H. Witten, E. Frank and M. A. Hall Combining multiple models Bagging The basic idea

More information

REAL TIME TRAFFIC LIGHT CONTROL USING IMAGE PROCESSING

REAL TIME TRAFFIC LIGHT CONTROL USING IMAGE PROCESSING REAL TIME TRAFFIC LIGHT CONTROL USING IMAGE PROCESSING Ms.PALLAVI CHOUDEKAR Ajay Kumar Garg Engineering College, Department of electrical and electronics Ms.SAYANTI BANERJEE Ajay Kumar Garg Engineering

More information

Automatic Detection of PCB Defects

Automatic Detection of PCB Defects IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 6 November 2014 ISSN (online): 2349-6010 Automatic Detection of PCB Defects Ashish Singh PG Student Vimal H.

More information

Image Normalization for Illumination Compensation in Facial Images

Image Normalization for Illumination Compensation in Facial Images Image Normalization for Illumination Compensation in Facial Images by Martin D. Levine, Maulin R. Gandhi, Jisnu Bhattacharyya Department of Electrical & Computer Engineering & Center for Intelligent Machines

More information

3D Scanner using Line Laser. 1. Introduction. 2. Theory

3D Scanner using Line Laser. 1. Introduction. 2. Theory . Introduction 3D Scanner using Line Laser Di Lu Electrical, Computer, and Systems Engineering Rensselaer Polytechnic Institute The goal of 3D reconstruction is to recover the 3D properties of a geometric

More information

Model Combination. 24 Novembre 2009

Model Combination. 24 Novembre 2009 Model Combination 24 Novembre 2009 Datamining 1 2009-2010 Plan 1 Principles of model combination 2 Resampling methods Bagging Random Forests Boosting 3 Hybrid methods Stacking Generic algorithm for mulistrategy

More information

Logo Symmetry Learning Task. Unit 5

Logo Symmetry Learning Task. Unit 5 Logo Symmetry Learning Task Unit 5 Course Mathematics I: Algebra, Geometry, Statistics Overview The Logo Symmetry Learning Task explores graph symmetry and odd and even functions. Students are asked to

More information

Speed Performance Improvement of Vehicle Blob Tracking System

Speed Performance Improvement of Vehicle Blob Tracking System Speed Performance Improvement of Vehicle Blob Tracking System Sung Chun Lee and Ram Nevatia University of Southern California, Los Angeles, CA 90089, USA sungchun@usc.edu, nevatia@usc.edu Abstract. A speed

More information

Using Real Time Computer Vision Algorithms in Automatic Attendance Management Systems

Using Real Time Computer Vision Algorithms in Automatic Attendance Management Systems Using Real Time Computer Vision Algorithms in Automatic Attendance Management Systems Visar Shehu 1, Agni Dika 2 Contemporary Sciences and Technologies - South East European University, Macedonia 1 Contemporary

More information

Audience Analysis System on the Basis of Face Detection, Tracking and Classification Techniques

Audience Analysis System on the Basis of Face Detection, Tracking and Classification Techniques Audience Analysis System on the Basis of Face Detection, Tracking and Classification Techniques Vladimir Khryashchev, Member, IAENG, Alexander Ganin, Maxim Golubev, and Lev Shmaglit Abstract A system of

More information

LOCAL SURFACE PATCH BASED TIME ATTENDANCE SYSTEM USING FACE. indhubatchvsa@gmail.com

LOCAL SURFACE PATCH BASED TIME ATTENDANCE SYSTEM USING FACE. indhubatchvsa@gmail.com LOCAL SURFACE PATCH BASED TIME ATTENDANCE SYSTEM USING FACE 1 S.Manikandan, 2 S.Abirami, 2 R.Indumathi, 2 R.Nandhini, 2 T.Nanthini 1 Assistant Professor, VSA group of institution, Salem. 2 BE(ECE), VSA

More information

Analecta Vol. 8, No. 2 ISSN 2064-7964

Analecta Vol. 8, No. 2 ISSN 2064-7964 EXPERIMENTAL APPLICATIONS OF ARTIFICIAL NEURAL NETWORKS IN ENGINEERING PROCESSING SYSTEM S. Dadvandipour Institute of Information Engineering, University of Miskolc, Egyetemváros, 3515, Miskolc, Hungary,

More information

Part-Based Pedestrian Detection and Tracking for Driver Assistance using two stage Classifier

Part-Based Pedestrian Detection and Tracking for Driver Assistance using two stage Classifier International Journal of Research Studies in Science, Engineering and Technology [IJRSSET] Volume 1, Issue 4, July 2014, PP 10-17 ISSN 2349-4751 (Print) & ISSN 2349-476X (Online) Part-Based Pedestrian

More information

MODULAR TRAFFIC SIGNS RECOGNITION APPLIED TO ON-VEHICLE REAL-TIME VISUAL DETECTION OF AMERICAN AND EUROPEAN SPEED LIMIT SIGNS

MODULAR TRAFFIC SIGNS RECOGNITION APPLIED TO ON-VEHICLE REAL-TIME VISUAL DETECTION OF AMERICAN AND EUROPEAN SPEED LIMIT SIGNS MODULAR TRAFFIC SIGNS RECOGNITION APPLIED TO ON-VEHICLE REAL-TIME VISUAL DETECTION OF AMERICAN AND EUROPEAN SPEED LIMIT SIGNS Fabien Moutarde and Alexandre Bargeton Robotics Laboratory Ecole des Mines

More information

Adaptive Face Recognition System from Myanmar NRC Card

Adaptive Face Recognition System from Myanmar NRC Card Adaptive Face Recognition System from Myanmar NRC Card Ei Phyo Wai University of Computer Studies, Yangon, Myanmar Myint Myint Sein University of Computer Studies, Yangon, Myanmar ABSTRACT Biometrics is

More information

Fraud Detection for Online Retail using Random Forests

Fraud Detection for Online Retail using Random Forests Fraud Detection for Online Retail using Random Forests Eric Altendorf, Peter Brende, Josh Daniel, Laurent Lessard Abstract As online commerce becomes more common, fraud is an increasingly important concern.

More information

Navigation Aid And Label Reading With Voice Communication For Visually Impaired People

Navigation Aid And Label Reading With Voice Communication For Visually Impaired People Navigation Aid And Label Reading With Voice Communication For Visually Impaired People A.Manikandan 1, R.Madhuranthi 2 1 M.Kumarasamy College of Engineering, mani85a@gmail.com,karur,india 2 M.Kumarasamy

More information

A Computer Vision System for Monitoring Production of Fast Food

A Computer Vision System for Monitoring Production of Fast Food ACCV2002: The 5th Asian Conference on Computer Vision, 23 25 January 2002, Melbourne, Australia A Computer Vision System for Monitoring Production of Fast Food Richard Russo Mubarak Shah Niels Lobo Computer

More information

Baseline Avatar Face Detection using an Extended Set of Haar-like Features

Baseline Avatar Face Detection using an Extended Set of Haar-like Features Baseline Avatar Face Detection using an Extended Set of Haar-like Features Darryl D Souza, Roman V. Yampolskiy Computer Engineering and Computer Science University of Louisville Louisville, Kentucky, USA

More information

Comparing Methods to Identify Defect Reports in a Change Management Database

Comparing Methods to Identify Defect Reports in a Change Management Database Comparing Methods to Identify Defect Reports in a Change Management Database Elaine J. Weyuker, Thomas J. Ostrand AT&T Labs - Research 180 Park Avenue Florham Park, NJ 07932 (weyuker,ostrand)@research.att.com

More information

VEHICLE LOCALISATION AND CLASSIFICATION IN URBAN CCTV STREAMS

VEHICLE LOCALISATION AND CLASSIFICATION IN URBAN CCTV STREAMS VEHICLE LOCALISATION AND CLASSIFICATION IN URBAN CCTV STREAMS Norbert Buch 1, Mark Cracknell 2, James Orwell 1 and Sergio A. Velastin 1 1. Kingston University, Penrhyn Road, Kingston upon Thames, KT1 2EE,

More information

Problem of the Month: Cutting a Cube

Problem of the Month: Cutting a Cube Problem of the Month: The Problems of the Month (POM) are used in a variety of ways to promote problem solving and to foster the first standard of mathematical practice from the Common Core State Standards:

More information

A Real-Time Driver Fatigue Detection System Based on Eye Tracking and Dynamic Template Matching

A Real-Time Driver Fatigue Detection System Based on Eye Tracking and Dynamic Template Matching Tamkang Journal of Science and Engineering, Vol. 11, No. 1, pp. 65 72 (28) 65 A Real-Time Driver Fatigue Detection System Based on Eye Tracking and Dynamic Template Matching Wen-Bing Horng* and Chih-Yuan

More information

A Real Time Driver s Eye Tracking Design Proposal for Detection of Fatigue Drowsiness

A Real Time Driver s Eye Tracking Design Proposal for Detection of Fatigue Drowsiness A Real Time Driver s Eye Tracking Design Proposal for Detection of Fatigue Drowsiness Nitin Jagtap 1, Ashlesha kolap 1, Mohit Adgokar 1, Dr. R.N Awale 2 PG Scholar, Dept. of Electrical Engg., VJTI, Mumbai

More information

Face Recognition in Low-resolution Images by Using Local Zernike Moments

Face Recognition in Low-resolution Images by Using Local Zernike Moments Proceedings of the International Conference on Machine Vision and Machine Learning Prague, Czech Republic, August14-15, 014 Paper No. 15 Face Recognition in Low-resolution Images by Using Local Zernie

More information

Seventh IEEE Workshop on Embedded Computer Vision. Ego-Motion Compensated Face Detection on a Mobile Device

Seventh IEEE Workshop on Embedded Computer Vision. Ego-Motion Compensated Face Detection on a Mobile Device Seventh IEEE Workshop on Embedded Computer Vision Ego-Motion Compensated Face Detection on a Mobile Device Björn Scheuermann, Arne Ehlers, Hamon Riazy, Florian Baumann, Bodo Rosenhahn Leibniz Universität

More information

Automated Attendance Management System using Face Recognition

Automated Attendance Management System using Face Recognition Automated Attendance Management System using Face Recognition Mrunmayee Shirodkar Varun Sinha Urvi Jain Bhushan Nemade Student, Thakur College Of Student, Thakur College Of Student, Thakur College of Assistant

More information

FPGA implementation of an embedded face detection system based on LEON3

FPGA implementation of an embedded face detection system based on LEON3 FPGA implementation of an embedded face detection system based on LEON3 L. Acasandrei 1 and A. Barriga 2 1 IMSE-CNM-CSIC, Seville, Spain 2 IMSE-CNM-CSIC/University of Seville, Seville, Spain Abstract -

More information

Blood Vessel Classification into Arteries and Veins in Retinal Images

Blood Vessel Classification into Arteries and Veins in Retinal Images Blood Vessel Classification into Arteries and Veins in Retinal Images Claudia Kondermann and Daniel Kondermann a and Michelle Yan b a Interdisciplinary Center for Scientific Computing (IWR), University

More information

Static Environment Recognition Using Omni-camera from a Moving Vehicle

Static Environment Recognition Using Omni-camera from a Moving Vehicle Static Environment Recognition Using Omni-camera from a Moving Vehicle Teruko Yata, Chuck Thorpe Frank Dellaert The Robotics Institute Carnegie Mellon University Pittsburgh, PA 15213 USA College of Computing

More information

A real-time framework for eye detection and tracking

A real-time framework for eye detection and tracking DOI 10.1007/s11554-010-0178-1 ORIGINAL RESEARCH PAPER A real-time framework for eye detection and tracking Hussein O. Hamshari Steven S. Beauchemin Received: 23 June 2008 / Accepted: 21 August 2010 Ó Springer-Verlag

More information

Haar Features Based Face Detection and Recognition for Advanced Classroom and Corporate Attendance

Haar Features Based Face Detection and Recognition for Advanced Classroom and Corporate Attendance Haar Features Based Face Detection and Recognition for Advanced Classroom and Corporate Attendance Tiwari Priti Anilkumar 1, Kalyani Jha 2, Karishma P Uchil 3, Naveen H 4 U.G. Student, Dept. of ECE, M

More information

Tennessee Mathematics Standards 2009-2010 Implementation. Grade Six Mathematics. Standard 1 Mathematical Processes

Tennessee Mathematics Standards 2009-2010 Implementation. Grade Six Mathematics. Standard 1 Mathematical Processes Tennessee Mathematics Standards 2009-2010 Implementation Grade Six Mathematics Standard 1 Mathematical Processes GLE 0606.1.1 Use mathematical language, symbols, and definitions while developing mathematical

More information

Extend Table Lens for High-Dimensional Data Visualization and Classification Mining

Extend Table Lens for High-Dimensional Data Visualization and Classification Mining Extend Table Lens for High-Dimensional Data Visualization and Classification Mining CPSC 533c, Information Visualization Course Project, Term 2 2003 Fengdong Du fdu@cs.ubc.ca University of British Columbia

More information

Face Model Fitting on Low Resolution Images

Face Model Fitting on Low Resolution Images Face Model Fitting on Low Resolution Images Xiaoming Liu Peter H. Tu Frederick W. Wheeler Visualization and Computer Vision Lab General Electric Global Research Center Niskayuna, NY, 1239, USA {liux,tu,wheeler}@research.ge.com

More information

(Least Squares Investigation)

(Least Squares Investigation) (Least Squares Investigation) o Open a new sketch. Select Preferences under the Edit menu. Select the Text Tab at the top. Uncheck both boxes under the title Show Labels Automatically o Create two points

More information

Low-resolution Character Recognition by Video-based Super-resolution

Low-resolution Character Recognition by Video-based Super-resolution 2009 10th International Conference on Document Analysis and Recognition Low-resolution Character Recognition by Video-based Super-resolution Ataru Ohkura 1, Daisuke Deguchi 1, Tomokazu Takahashi 2, Ichiro

More information

AN IMPROVED DOUBLE CODING LOCAL BINARY PATTERN ALGORITHM FOR FACE RECOGNITION

AN IMPROVED DOUBLE CODING LOCAL BINARY PATTERN ALGORITHM FOR FACE RECOGNITION AN IMPROVED DOUBLE CODING LOCAL BINARY PATTERN ALGORITHM FOR FACE RECOGNITION Saurabh Asija 1, Rakesh Singh 2 1 Research Scholar (Computer Engineering Department), Punjabi University, Patiala. 2 Asst.

More information

Fast face detection via morphology-based pre-processing

Fast face detection via morphology-based pre-processing Pattern Recognition 33 (2000) 1701}1712 Fast face detection via morphology-based pre-processing Chin-Chuan Han*, Hong-Yuan Mark Liao, Gwo-Jong Yu, Liang-Hua Chen Institute of Information Science, Academia

More information

Architecture for Mobile based Face Detection / Recognition

Architecture for Mobile based Face Detection / Recognition Architecture for Mobile based Face Detection / Recognition Shishir Kumar, Priyank Singh, Vivek Kumar Department of CSE, Jaypee Institute of Engineering & Technology Guna, India Abstract In this paper a

More information

Freehand Sketching. Sections

Freehand Sketching. Sections 3 Freehand Sketching Sections 3.1 Why Freehand Sketches? 3.2 Freehand Sketching Fundamentals 3.3 Basic Freehand Sketching 3.4 Advanced Freehand Sketching Key Terms Objectives Explain why freehand sketching

More information

UNIVERSITY OF CENTRAL FLORIDA AT TRECVID 2003. Yun Zhai, Zeeshan Rasheed, Mubarak Shah

UNIVERSITY OF CENTRAL FLORIDA AT TRECVID 2003. Yun Zhai, Zeeshan Rasheed, Mubarak Shah UNIVERSITY OF CENTRAL FLORIDA AT TRECVID 2003 Yun Zhai, Zeeshan Rasheed, Mubarak Shah Computer Vision Laboratory School of Computer Science University of Central Florida, Orlando, Florida ABSTRACT In this

More information

Face Recognition For Remote Database Backup System

Face Recognition For Remote Database Backup System Face Recognition For Remote Database Backup System Aniza Mohamed Din, Faudziah Ahmad, Mohamad Farhan Mohamad Mohsin, Ku Ruhana Ku-Mahamud, Mustafa Mufawak Theab 2 Graduate Department of Computer Science,UUM

More information

Mean-Shift Tracking with Random Sampling

Mean-Shift Tracking with Random Sampling 1 Mean-Shift Tracking with Random Sampling Alex Po Leung, Shaogang Gong Department of Computer Science Queen Mary, University of London, London, E1 4NS Abstract In this work, boosting the efficiency of

More information

Numeracy and mathematics Experiences and outcomes

Numeracy and mathematics Experiences and outcomes Numeracy and mathematics Experiences and outcomes My learning in mathematics enables me to: develop a secure understanding of the concepts, principles and processes of mathematics and apply these in different

More information

Influence of low resolution of images on reliability of face detection and recognition

Influence of low resolution of images on reliability of face detection and recognition Multimed Tools Appl (2015) 74:4329 4349 DOI 10.1007/s11042-013-1568-8 Influence of low resolution of images on reliability of face detection and recognition Tomasz Marciniak Agata Chmielewska Radoslaw

More information

On-line Boosting and Vision

On-line Boosting and Vision On-line Boosting and Vision Helmut Grabner and Horst Bischof Institute for Computer Graphics and Vision Graz University of Technology {hgrabner, bischof}@icg.tu-graz.ac.at Abstract Boosting has become

More information

Open Access A Facial Expression Recognition Algorithm Based on Local Binary Pattern and Empirical Mode Decomposition

Open Access A Facial Expression Recognition Algorithm Based on Local Binary Pattern and Empirical Mode Decomposition Send Orders for Reprints to reprints@benthamscience.ae The Open Electrical & Electronic Engineering Journal, 2014, 8, 599-604 599 Open Access A Facial Expression Recognition Algorithm Based on Local Binary

More information

Online Play Segmentation for Broadcasted American Football TV Programs

Online Play Segmentation for Broadcasted American Football TV Programs Online Play Segmentation for Broadcasted American Football TV Programs Liexian Gu 1, Xiaoqing Ding 1, and Xian-Sheng Hua 2 1 Department of Electronic Engineering, Tsinghua University, Beijing, China {lxgu,

More information

Keywords Input Images, Damage face images, Face recognition system, etc...

Keywords Input Images, Damage face images, Face recognition system, etc... Volume 5, Issue 4, 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Research - Face Recognition

More information

Locating and Decoding EAN-13 Barcodes from Images Captured by Digital Cameras

Locating and Decoding EAN-13 Barcodes from Images Captured by Digital Cameras Locating and Decoding EAN-13 Barcodes from Images Captured by Digital Cameras W3A.5 Douglas Chai and Florian Hock Visual Information Processing Research Group School of Engineering and Mathematics Edith

More information

REFLECTIONS ON THE USE OF BIG DATA FOR STATISTICAL PRODUCTION

REFLECTIONS ON THE USE OF BIG DATA FOR STATISTICAL PRODUCTION REFLECTIONS ON THE USE OF BIG DATA FOR STATISTICAL PRODUCTION Pilar Rey del Castillo May 2013 Introduction The exploitation of the vast amount of data originated from ICT tools and referring to a big variety

More information

Towards robust and efficient text sign reading from a mobile phone

Towards robust and efficient text sign reading from a mobile phone Towards robust and efficient text sign reading from a mobile phone A. B. Cambra, A. C. Murillo DIIS, Instituto de Investigación en Ingeniería de Aragón University of Zaragoza, Spain ana.cambralines@gmail.com,

More information

Chapter 11 Boosting. Xiaogang Su Department of Statistics University of Central Florida - 1 -

Chapter 11 Boosting. Xiaogang Su Department of Statistics University of Central Florida - 1 - Chapter 11 Boosting Xiaogang Su Department of Statistics University of Central Florida - 1 - Perturb and Combine (P&C) Methods have been devised to take advantage of the instability of trees to create

More information

Human behavior analysis from videos using optical flow

Human behavior analysis from videos using optical flow L a b o r a t o i r e I n f o r m a t i q u e F o n d a m e n t a l e d e L i l l e Human behavior analysis from videos using optical flow Yassine Benabbas Directeur de thèse : Chabane Djeraba Multitel

More information

REAL-TIME FACE AND HAND DETECTION FOR VIDEOCONFERENCING ON A MOBILE DEVICE. Frank M. Ciaramello and Sheila S. Hemami

REAL-TIME FACE AND HAND DETECTION FOR VIDEOCONFERENCING ON A MOBILE DEVICE. Frank M. Ciaramello and Sheila S. Hemami REAL-TIME FACE AND HAND DETECTION FOR VIDEOCONFERENCING ON A MOBILE DEVICE Frank M. Ciaramello and Sheila S. Hemami Visual Communication Laboratory School of Electrical and Computer Engineering, Cornell

More information

Learning Detectors from Large Datasets for Object Retrieval in Video Surveillance

Learning Detectors from Large Datasets for Object Retrieval in Video Surveillance 2012 IEEE International Conference on Multimedia and Expo Learning Detectors from Large Datasets for Object Retrieval in Video Surveillance Rogerio Feris, Sharath Pankanti IBM T. J. Watson Research Center

More information

Monitoring Creatures Great and Small: Computer Vision Systems for Looking at Grizzly Bears, Fish, and Grasshoppers

Monitoring Creatures Great and Small: Computer Vision Systems for Looking at Grizzly Bears, Fish, and Grasshoppers Monitoring Creatures Great and Small: Computer Vision Systems for Looking at Grizzly Bears, Fish, and Grasshoppers Greg Mori, Maryam Moslemi, Andy Rova, Payam Sabzmeydani, Jens Wawerla Simon Fraser University

More information

An Energy-Based Vehicle Tracking System using Principal Component Analysis and Unsupervised ART Network

An Energy-Based Vehicle Tracking System using Principal Component Analysis and Unsupervised ART Network Proceedings of the 8th WSEAS Int. Conf. on ARTIFICIAL INTELLIGENCE, KNOWLEDGE ENGINEERING & DATA BASES (AIKED '9) ISSN: 179-519 435 ISBN: 978-96-474-51-2 An Energy-Based Vehicle Tracking System using Principal

More information

Data Mining. Nonlinear Classification

Data Mining. Nonlinear Classification Data Mining Unit # 6 Sajjad Haider Fall 2014 1 Nonlinear Classification Classes may not be separable by a linear boundary Suppose we randomly generate a data set as follows: X has range between 0 to 15

More information

Super-resolution method based on edge feature for high resolution imaging

Super-resolution method based on edge feature for high resolution imaging Science Journal of Circuits, Systems and Signal Processing 2014; 3(6-1): 24-29 Published online December 26, 2014 (http://www.sciencepublishinggroup.com/j/cssp) doi: 10.11648/j.cssp.s.2014030601.14 ISSN:

More information

Leveraging Ensemble Models in SAS Enterprise Miner

Leveraging Ensemble Models in SAS Enterprise Miner ABSTRACT Paper SAS133-2014 Leveraging Ensemble Models in SAS Enterprise Miner Miguel Maldonado, Jared Dean, Wendy Czika, and Susan Haller SAS Institute Inc. Ensemble models combine two or more models to

More information

Solution Derivations for Capa #14

Solution Derivations for Capa #14 Solution Derivations for Capa #4 ) An image of the moon is focused onto a screen using a converging lens of focal length (f = 34.8 cm). The diameter of the moon is 3.48 0 6 m, and its mean distance from

More information

Top Top 10 Algorithms in Data Mining

Top Top 10 Algorithms in Data Mining ICDM 06 Panel on Top Top 10 Algorithms in Data Mining 1. The 3-step identification process 2. The 18 identified candidates 3. Algorithm presentations 4. Top 10 algorithms: summary 5. Open discussions ICDM

More information