VEHICLE LOCALISATION AND CLASSIFICATION IN URBAN CCTV STREAMS

Size: px
Start display at page:

Download "VEHICLE LOCALISATION AND CLASSIFICATION IN URBAN CCTV STREAMS"

Transcription

1 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, United Kingdom {norbert.buch, james.orwell, sergio.velastin}@kingston.ac.uk 2. Transport for London, Palestra, 197 Blackfriars Road, London, SE1 8NJ, United Kingdom ABSTRACT This paper presents an introduction to video analysis tools for urban traffic management. Based on a review of the limitation of current systems, a framework for localising and classifying cars in real-world coordinates is introduced as part of a project at Transport for London. Vehicle detection is performed using either motion silhouettes or 3DHOG (3D extended Histograms of Oriented Gradients). The latter is more robust in urban environments. Qualitative and quantitative evaluation of the proposed systems is provided with an outlook on further development potential. KEYWORDS vehicle detection, road user classification, pedestrian, urban traffic, visual surveillance, video analysis, computer vision INTRODUCTION Intelligent image detection systems are part of a centralised approach to modern day traffic management. This has arisen from the need for more cost effective and efficient monitoring of traffic. Traffic monitoring CCTV tends to be unique in that it includes high camera numbers, is in the public domain and contains long transmission paths (up to 4km). With 12 cameras and over 1 monitors it is not feasible to continuously monitor every CCTV camera installed within Transport for London s (TfL) network. In fact, it has been shown that manual monitoring over time significantly reduces the accuracy of detection. Therefore, the development of a technology that provides automatic and relevant real-time alerts to Traffic Co-ordinators can have an immediate and long term impact on traffic management through the implementation of responsive traffic strategies. In early 26, TfL launched the Image Recognition and Incident Detection (IRID) project. This project was tasked to review the current image processing market and see how it met TfL s detection requirements. Testing was carried out on the following criteria: Congestion, Stopped Vehicles, Banned turns, Vehicle counting, Subway Monitoring and Bus detection. [6,7]. Results from this testing show good performance in Congestion detection (8% precision), but poor performance in tracking based detection (~2% precision), clearly showing limitations in capability. This limitation led directly to the creation of a research relationship with Kingston University. The aims of this project are the localisation and subsequent 1

2 Buch et al. Vehicle Localisation and Classification in Urban CCTV Streams ITS World Congress 29 Detector frame GMM [11] Tracker foreground mask Classifier Closed Contours frame silhouettes Match Measure scores Maximum labels GP pos Kalman Filter tracks 3D Hypothesis GP positions 2D Projection [12] model data Models Figure 1 Framework for 3D localisation and classification and models used classification of vehicles and pedestrians in camera views specific to the urban environment of Transport for London. Estimating the vehicle position in real-world coordinates (on road maps) is also beneficial for traffic enforcement applications. The conventional concept of using background modelling for the generation of a motion mask is only used as baseline. Motion masks suffer from noise due to lighting changes, camera shake, rain, etc. and particularly from occlusion due to low camera angle. All these effects are inherent to urban traffic scenes. The project objective was to move beyond motion estimation and use other visual means to localise and classify cars. A texture based classifier (3DHOG) was introduced to overcome the mentioned problems. 3D FRAMEWORK FOR VEHICLE CLASSIFICATION AND LOCALISATION We developed a framework to localise vehicles either based on the motion mask or based on the texture in the image. The framework is shown in Figure 1. The detector uses background estimation with a Gaussian Mixture Model (GMM) [11] to model the static part of the scene. This model allows for several images to be considered static as shown in Figure 2, which enables rejection of moving objects in the background like trees. By considering the difference between the background and a new frame, an initial foreground mask is estimated. This mask is refined by a shadow removal algorithm, which considers areas as shadows, if they are slightly darker than the background but have the same colour. From the resulting binary foreground mask, closed contours are extracted. The contours provided by the detector are used to initialise hypotheses for vehicle locations on the ground plane. The hypotheses are verified by the classifier by comparing existing vehicle models with the input image to give a match measure. The models can either be the projected silhouettes or appearance data gathered during a training phase. Finding the maximum match in terms of location and vehicle type gives the final estimation. The detection of a single frame can be tracked over time using a Kalman filter, which will produce tracks (trajectories) for vehicles. Further details about the framework can be found in Buch et al. [2,4] and for the tracker in [5]. As visual output, the localised vehicles are marked up on the camera view and on a map of the area. Refer to Figure 2 for an example frame from TfL with corresponding map. The thin dark red boxes represent the regions of interest where vehicle detection is performed. This could be set to bus lane areas to detected unpermitted vehicles in those lanes. 2

3 Buch et al. Vehicle Localisation and Classification in Urban CCTV Streams Initial mask Frame Silhouettes Foreground mask Remove Shadow GMM ITS World Congress 29 Closed Contour Stable background Second background Foreground Detector a b Figure 2 a) Detector stage. b) Localised vehicles with superimposed wire frames and ground plane location. The coloured lines are the tracks of individual vehicles. RESULTS USING MOTION SILHOUETTES The localisation framework was first tested with a baseline approach using the overlap of motions silhouettes and model silhouettes as match measure. Figure 3 illustrates the operation where a score is defined as the ratio between intersection and union of both silhouettes. The 3D location of vehicles is found by generating a hypotheses grid (green crosses in Figure 3) around the back projected silhouette centroid (red cross in Figure 3). A score surface is generated for this grid and the hypothesis with the highest score is selected as location and class for the detected vehicle. Silhouettes Classifier Scores Overlap 1 ID 2 ID 3 Match measure [%] 8 Overlap Area ID 4 ID 5 6 ID 6 Maximum ID 7 4 ID 8 ID 9 2 3D Cros-section position [m] 2 Labels Hypothesis Model Silhouette Model 2D Project. Model s Ground plane map Figure 3 Classifier based on motion silhouette overlap with model 3

4 Buch et al. Vehicle Localisation and Classification in Urban CCTV Streams ITS World Congress 29 ground truth detection pedestrian bike car/taxi van bus/lorry FN count overlap pedestrian bike car/taxi van bus/lorry FP ground truth detection pedestrian bike car/taxi van bus/lorry count pedestrian bike car/taxi van bus/lorry Symbol Recall R Precision P Classifier P C Detector R D Detector P D GT Overlap Value 79.5% 83.9% 89.8% 88.6% 93.5% a b c Table 1 a) Confusion matrix of full system including detector. b) Confusion matrix of classifier only. C) Full performance for motion silhouettes based system..64 Classification performance The system was extensively tested with video footage from Transport for London and from the i-lids datasets [1]. The latter is a benchmarking dataset provided by the UK Home Office to imaging research institutions. In Table 1, we present classification results on 1 hour video footage from the parked car scenario. Good overall classification performance is demonstrated with some confusion between bikes and pedestrians. This is due the similar size of those two types of road users. The localisation performance is demonstrated by the bounding box overlap between the wire frame and the ground truth in the overlap row. The value of 64% overlap is good, considering the use of the wire frame rather than the motion silhouette for the bounding box estimation. Detailed explanation for performance measures can be found in [1] and its application in [2,4]. Tracking performance Tracking is performed on the ground plane of the scene, which simplifies behaviour analysis like bus lane monitoring. We use the standard formulation of the Kalman filter for a constant velocity model of vehicles. The object tracking performance is demonstrated by comparing our tracker with a baseline tracker (OpenCV blob tracker [1]). The OpenCV tracker uses an adaptive mixture of Gaussians for background estimation, connected component analysis for data association and Kalman filtering for tracking blob position and size. The data used is i- LIDS [1] as for the performance evaluation of classification. We propose a rich set of metrics such as Correct Detected Tracks, False Detected Tracks and Track Detection Failure to provide a general overview of the system s performance. Track Fragmentation shows whether the temporal and spatial coherence of tracks is established. ID Change is useful to test the data association module of the system. Latency indicates how quick the system can respond to an object entering the camera view, and Track Completeness how complete the object has been tracked. Metrics such as Track Distance Error and Closeness of Tracks indicate the accuracy of estimating the position, the spatial and the temporal extent of the objects respectively. More details about this evaluation framework can be found in [5] and Yin et al. [13]. The proposed system detected 94% of the ground truth tracks compared to 88% of the base line. Our system has half of the track detection failures compared to the base line. Please refer to Table 2 for a complete set of metrics and Figure 4 for visual tracking examples. 4

5 Buch et al. Vehicle Localisation and Classification in Urban CCTV Streams ITS World Congress 29 Metrics proposed Tracker OpenCV blob Tr. Number of Ground truth tracks 1 1 Number of system tracks Correct detected tracks Track detection failure 6 12 False detected tracks 27 9 Latency [frames] 5 5 Track fragmentation 8 18 Average track Completeness [time] 64% 55% ID change 1 3 Average track closeness [bbox overlap] 54% 35% Standard Deviation of closeness 2% 13% Average distance error [pixels] Standard Deviation of distance error Table 2 Tracking results of motion silhouette classifier Figure 4 Example tracking results from the i-lids data BEYOND MOTION: 3DHOG The limitations of motions silhouettes inspired the use of texture to detect vehicles by appearance. Good results have been reported elsewhere for patch based approaches in object recognition [9] and pedestrian detection with histograms of oriented gradients (HOG) [8]. We introduce a novel concept by applying the HOG descriptor to image patches defined in 3D model space. Full details on this 3DHOG framework can be found in Buch et al. [3]. This feature approach substitutes the overlap match measure in the block diagram with a training 5

6 Buch et al. Vehicle Localisation and Classification in Urban CCTV Streams ITS World Congress 29 a b c d Figure 5 a) 3D model with marked interest points. b) input camera image frame. c) extracted and normalised image patches displayed in 3D space. d) 3DHOG gradient features generated from the visible image patches based classification step. Figure 5 shows the model with patch centres defined with the model and the extracted patches. Affine transformations are used to generate those scale normalised patches. A descriptor is generated from every patch, which consists of either gradient histograms, a frequency spectrum or a simple image histogram. A data driven appearance model is learned, whereas a single Gaussian distribution is learned for every interest point descriptor. During system operation, new descriptors are generated for every hypothesis (2D projection block in Figure 1), whereas the distance between learned descriptors and newly seen descriptors define the match measure. The remainder of the framework remains identical to the earlier description. Performance comparison For evaluation on the same dataset as in the last section, a recall of 81% is achieved at a precision of 82%. Those results indicate similar performance to the motion based system, however providing more robustness against the usual noise sources in the urban environment. By using texture and appearance rather than motion, the 3DHOG classifier can deal with cases were the motion silhouette is significantly distorted or similar for different classes. There are illustrative examples in Figure 6. The case of oversized silhouettes due to shadows and lighting changes is rectified and a pedestrian in correctly detected. Another common problem is saturation of some areas in the camera. The example shows a very small silhouette for a white van, which was missed from the motion foreground due to the saturation in the same area. The 3DHOG classifier successfully detects and classifies the van. For objects of similar size like pedestrians and bicycles, the classifier can distinguish correctly based on the appearance. CONCLUSIONS We presented a review of commercial video analytics systems tested by Transport for London. The findings and the progress of the subsequent project with Kingston University is demonstrated. An improved computer vision system is demonstrated by introducing a 3D localisation framework for vehicles. Good results are demonstrated for motion silhouette based vehicle classification. An extension to texture based classification is given by moving beyond the concept of motion estimation. This extends the concept of HOG by introducing novel 3DHOG, which use a 3D surface window for vehicle classification. This classifier demonstrated superior performance for challenging cases where motions silhouettes are 6

7 Buch et al. Vehicle Localisation and Classification in Urban CCTV Streams ITS World Congress 29 3DHOG classifier Motion Silhouette classifier Figure 6 Comparison between 3DHOG and motion silhouette classifier. Noisy motion foreground (blue outline) is misclassified on the right. In contrast, the 3DHOG classifier correctly classifies the pedestrian inside the shadow and the van in the saturated area. incorrect. The frame to frame detection is used as input for a Kalman filter to generate trajectories of road users. Future work will focus on more evaluation of the proposed systems under diverse weather and operation conditions. ACKNOWLEDGEMENTS This work is sponsored and conducted in cooperation with the Directorate for Traffic Operations at Transport for London.. [12 [11] REFERENCES [1] Home Office Scientific Development Branch. Imagery library for intelligent detection systems i-lids. [accessed 19 December 28]. [2] Norbert Buch, James Orwell, and Sergio A. Velastin. Detection and classification of vehicles for urban traffic scenes. In International Conference on Visual Information Engineering VIE8, pages IET, July 28. [3] Norbert Buch, James Orwell, and Sergio A. Velastin. 3D extended histogram of oriented gradients (3DHOG) for classification of road users in urban scenes. In British Machine Vision Conference BMVC 29, London, September 29. [4] Norbert Buch, James Orwell, and Sergio A. Velastin. Urban road user detection and classification using 3d wire frame models. IET Computer Vision [accepted], 29. 7

8 Buch et al. Vehicle Localisation and Classification in Urban CCTV Streams ITS World Congress 29 [5] Norbert Buch, Fei Yin, James Orwell, Dimitrios Makris, and Sergio A. Velastin. Urban vehicle tracking using a combined 3d model detector and classifier. In 13th International Conference on Knowledge-Based and Intelligent Information & Engineering Systems KES29, Santiago, Chile, September 29. LNCS Springer. [6] Mark Cracknell. Image detection in the real world interactive session. In Intelligent Transportation Systems ITS 7 Aalborg, 27. [7] Mark Cracknell. Image detection in the real world a progress update. In Intelligent Transportation Systems World Congress ITS WC 28 New York, 28. [8] N. Dalal and B. Triggs. Histograms of oriented gradients for human detection. In Computer Vision and Pattern Recognition, 25. CVPR 25. IEEE Computer Society Conference on, volume 1, pages , 25. [9] Bastian Leibe, Ales Leonardis, and Bernt Schiele. Combined object categorization and segmentation with an implicit shape model. In ECCV 4 Workshop on Statistical Learning in Computer Vision, pages 17 32, May 24. [1] OpenCV. Open source computer vision library. [accessed 19 December 28]. [11] C. Stauffer and W.E.L. Grimson. Adaptive background mixture models for real-time tracking. In Computer Vision and Pattern Recognition, IEEE Computer Society Conference on., volume 2, pages , June [12] Roger Y. Tsai. An efficient and accurate camera calibration technique for 3d machine vision. In Proc. Int. Conf. on Computer Vision and Pattern Recognition (CVPR), (1986), pages , [13] Fei Yin, Dimitrios Makris, and Sergio A. Velastin. Performance evaluation of object tracking algorithms. In 1th IEEE International Workshop on Performance Evaluation of Tracking and Surveillance, PETS'7, Rio de Janeiro, October 27. 8

Urban Vehicle Tracking using a Combined 3D Model Detector and Classifier

Urban Vehicle Tracking using a Combined 3D Model Detector and Classifier Urban Vehicle Tracing using a Combined 3D Model Detector and Classifier Norbert Buch, Fei Yin, James Orwell, Dimitrios Maris and Sergio A. Velastin Digital Imaging Research Centre, Kingston University,

More information

Real-Time Tracking of Pedestrians and Vehicles

Real-Time Tracking of Pedestrians and Vehicles Real-Time Tracking of Pedestrians and Vehicles N.T. Siebel and S.J. Maybank. Computational Vision Group Department of Computer Science The University of Reading Reading RG6 6AY, England Abstract We present

More information

Tracking performance evaluation on PETS 2015 Challenge datasets

Tracking performance evaluation on PETS 2015 Challenge datasets Tracking performance evaluation on PETS 2015 Challenge datasets Tahir Nawaz, Jonathan Boyle, Longzhen Li and James Ferryman Computational Vision Group, School of Systems Engineering University of Reading,

More information

The goal is multiply object tracking by detection with application on pedestrians.

The goal is multiply object tracking by detection with application on pedestrians. Coupled Detection and Trajectory Estimation for Multi-Object Tracking By B. Leibe, K. Schindler, L. Van Gool Presented By: Hanukaev Dmitri Lecturer: Prof. Daphna Wienshall The Goal The goal is multiply

More information

CCTV - Video Analytics for Traffic Management

CCTV - Video Analytics for Traffic Management CCTV - Video Analytics for Traffic Management Index Purpose Description Relevance for Large Scale Events Technologies Impacts Integration potential Implementation Best Cases and Examples 1 of 12 Purpose

More information

A PHOTOGRAMMETRIC APPRAOCH FOR AUTOMATIC TRAFFIC ASSESSMENT USING CONVENTIONAL CCTV CAMERA

A PHOTOGRAMMETRIC APPRAOCH FOR AUTOMATIC TRAFFIC ASSESSMENT USING CONVENTIONAL CCTV CAMERA A PHOTOGRAMMETRIC APPRAOCH FOR AUTOMATIC TRAFFIC ASSESSMENT USING CONVENTIONAL CCTV CAMERA N. Zarrinpanjeh a, F. Dadrassjavan b, H. Fattahi c * a Islamic Azad University of Qazvin - nzarrin@qiau.ac.ir

More information

Vision based Vehicle Tracking using a high angle camera

Vision based Vehicle Tracking using a high angle camera Vision based Vehicle Tracking using a high angle camera Raúl Ignacio Ramos García Dule Shu gramos@clemson.edu dshu@clemson.edu Abstract A vehicle tracking and grouping algorithm is presented in this work

More information

Tracking and Recognition in Sports Videos

Tracking and Recognition in Sports Videos Tracking and Recognition in Sports Videos Mustafa Teke a, Masoud Sattari b a Graduate School of Informatics, Middle East Technical University, Ankara, Turkey mustafa.teke@gmail.com b Department of Computer

More information

3D Model based Object Class Detection in An Arbitrary View

3D Model based Object Class Detection in An Arbitrary View 3D Model based Object Class Detection in An Arbitrary View Pingkun Yan, Saad M. Khan, Mubarak Shah School of Electrical Engineering and Computer Science University of Central Florida http://www.eecs.ucf.edu/

More information

The Visual Internet of Things System Based on Depth Camera

The Visual Internet of Things System Based on Depth Camera The Visual Internet of Things System Based on Depth Camera Xucong Zhang 1, Xiaoyun Wang and Yingmin Jia Abstract The Visual Internet of Things is an important part of information technology. It is proposed

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

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

Evaluating the Performance of Systems for Tracking Football Players and Ball

Evaluating the Performance of Systems for Tracking Football Players and Ball Evaluating the Performance of Systems for Tracking Football Players and Ball Y. Li A. Dore J. Orwell School of Computing D.I.B.E. School of Computing Kingston University University of Genova Kingston University

More information

3D Vehicle Extraction and Tracking from Multiple Viewpoints for Traffic Monitoring by using Probability Fusion Map

3D Vehicle Extraction and Tracking from Multiple Viewpoints for Traffic Monitoring by using Probability Fusion Map Electronic Letters on Computer Vision and Image Analysis 7(2):110-119, 2008 3D Vehicle Extraction and Tracking from Multiple Viewpoints for Traffic Monitoring by using Probability Fusion Map Zhencheng

More information

False alarm in outdoor environments

False alarm in outdoor environments Accepted 1.0 Savantic letter 1(6) False alarm in outdoor environments Accepted 1.0 Savantic letter 2(6) Table of contents Revision history 3 References 3 1 Introduction 4 2 Pre-processing 4 3 Detection,

More information

EFFICIENT VEHICLE TRACKING AND CLASSIFICATION FOR AN AUTOMATED TRAFFIC SURVEILLANCE SYSTEM

EFFICIENT VEHICLE TRACKING AND CLASSIFICATION FOR AN AUTOMATED TRAFFIC SURVEILLANCE SYSTEM EFFICIENT VEHICLE TRACKING AND CLASSIFICATION FOR AN AUTOMATED TRAFFIC SURVEILLANCE SYSTEM Amol Ambardekar, Mircea Nicolescu, and George Bebis Department of Computer Science and Engineering University

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

Tracking in flussi video 3D. Ing. Samuele Salti

Tracking in flussi video 3D. Ing. Samuele Salti Seminari XXIII ciclo Tracking in flussi video 3D Ing. Tutors: Prof. Tullio Salmon Cinotti Prof. Luigi Di Stefano The Tracking problem Detection Object model, Track initiation, Track termination, Tracking

More information

Detection and Recognition of Mixed Traffic for Driver Assistance System

Detection and Recognition of Mixed Traffic for Driver Assistance System Detection and Recognition of Mixed Traffic for Driver Assistance System Pradnya Meshram 1, Prof. S.S. Wankhede 2 1 Scholar, Department of Electronics Engineering, G.H.Raisoni College of Engineering, Digdoh

More information

EXPLORING IMAGE-BASED CLASSIFICATION TO DETECT VEHICLE MAKE AND MODEL FINAL REPORT

EXPLORING IMAGE-BASED CLASSIFICATION TO DETECT VEHICLE MAKE AND MODEL FINAL REPORT EXPLORING IMAGE-BASED CLASSIFICATION TO DETECT VEHICLE MAKE AND MODEL FINAL REPORT Jeffrey B. Flora, Mahbubul Alam, Amr H. Yousef, and Khan M. Iftekharuddin December 2013 DISCLAIMER The contents of this

More information

Colorado School of Mines Computer Vision Professor William Hoff

Colorado School of Mines Computer Vision Professor William Hoff Professor William Hoff Dept of Electrical Engineering &Computer Science http://inside.mines.edu/~whoff/ 1 Introduction to 2 What is? A process that produces from images of the external world a description

More information

Tracking And Object Classification For Automated Surveillance

Tracking And Object Classification For Automated Surveillance Tracking And Object Classification For Automated Surveillance Omar Javed and Mubarak Shah Computer Vision ab, University of Central Florida, 4000 Central Florida Blvd, Orlando, Florida 32816, USA {ojaved,shah}@cs.ucf.edu

More information

Behavior Analysis in Crowded Environments. XiaogangWang Department of Electronic Engineering The Chinese University of Hong Kong June 25, 2011

Behavior Analysis in Crowded Environments. XiaogangWang Department of Electronic Engineering The Chinese University of Hong Kong June 25, 2011 Behavior Analysis in Crowded Environments XiaogangWang Department of Electronic Engineering The Chinese University of Hong Kong June 25, 2011 Behavior Analysis in Sparse Scenes Zelnik-Manor & Irani CVPR

More information

Towards License Plate Recognition: Comparying Moving Objects Segmentation Approaches

Towards License Plate Recognition: Comparying Moving Objects Segmentation Approaches 1 Towards License Plate Recognition: Comparying Moving Objects Segmentation Approaches V. J. Oliveira-Neto, G. Cámara-Chávez, D. Menotti UFOP - Federal University of Ouro Preto Computing Department Ouro

More information

Big Data: Image & Video Analytics

Big Data: Image & Video Analytics Big Data: Image & Video Analytics How it could support Archiving & Indexing & Searching Dieter Haas, IBM Deutschland GmbH The Big Data Wave 60% of internet traffic is multimedia content (images and videos)

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

Observing Human Behavior in Image Sequences: the Video Hermeneutics Challenge

Observing Human Behavior in Image Sequences: the Video Hermeneutics Challenge Observing Human Behavior in Image Sequences: the Video Hermeneutics Challenge Pau Baiget, Jordi Gonzàlez Computer Vision Center, Dept. de Ciències de la Computació, Edifici O, Campus UAB, 08193 Bellaterra,

More information

University of Leeds SCHOOL OF COMPUTER STUDIES RESEARCH REPORT SERIES Report 2001.21

University of Leeds SCHOOL OF COMPUTER STUDIES RESEARCH REPORT SERIES Report 2001.21 University of Leeds SCHOOL OF COMPUTER STUDIES RESEARCH REPORT SERIES Report 2001.21 Tracking Multiple Vehicles using Foreground, Background and Motion Models 1 by D R Magee December 2001 1 Submitted to

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

The Advantages of Using a Fixed Stereo Vision sensor

The Advantages of Using a Fixed Stereo Vision sensor Proc. of International Conference on Industrial & Engineering Applications of Artificial Intelligence & Expert Systems (IEA/AIE), 2005 Real-Time People Localization and Tracking through Fixed Stereo Vision

More information

IMPLICIT SHAPE MODELS FOR OBJECT DETECTION IN 3D POINT CLOUDS

IMPLICIT SHAPE MODELS FOR OBJECT DETECTION IN 3D POINT CLOUDS IMPLICIT SHAPE MODELS FOR OBJECT DETECTION IN 3D POINT CLOUDS Alexander Velizhev 1 (presenter) Roman Shapovalov 2 Konrad Schindler 3 1 Hexagon Technology Center, Heerbrugg, Switzerland 2 Graphics & Media

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

Advanced Methods for Pedestrian and Bicyclist Sensing

Advanced Methods for Pedestrian and Bicyclist Sensing Advanced Methods for Pedestrian and Bicyclist Sensing Yinhai Wang PacTrans STAR Lab University of Washington Email: yinhai@uw.edu Tel: 1-206-616-2696 For Exchange with University of Nevada Reno Sept. 25,

More information

Support Vector Machine-Based Human Behavior Classification in Crowd through Projection and Star Skeletonization

Support Vector Machine-Based Human Behavior Classification in Crowd through Projection and Star Skeletonization Journal of Computer Science 6 (9): 1008-1013, 2010 ISSN 1549-3636 2010 Science Publications Support Vector Machine-Based Human Behavior Classification in Crowd through Projection and Star Skeletonization

More information

Real-time Person Detection and Tracking in Panoramic Video

Real-time Person Detection and Tracking in Panoramic Video 2013 IEEE Conference on Computer Vision and Pattern Recognition Workshops Real-time Person Detection and Tracking in Panoramic Video Marcus Thaler, Werner Bailer JOANNEUM RESEARCH, DIGITAL Institute for

More information

Multi-view Intelligent Vehicle Surveillance System

Multi-view Intelligent Vehicle Surveillance System Multi-view Intelligent Vehicle Surveillance System S. Denman, C. Fookes, J. Cook, C. Davoren, A. Mamic, G. Farquharson, D. Chen, B. Chen and S. Sridharan Image and Video Research Laboratory Queensland

More information

Tracking and integrated navigation Konrad Schindler

Tracking and integrated navigation Konrad Schindler Tracking and integrated navigation Konrad Schindler Institute of Geodesy and Photogrammetry Tracking Navigation needs predictions for dynamic objects estimate trajectories in 3D world coordinates and extrapolate

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

Edge tracking for motion segmentation and depth ordering

Edge tracking for motion segmentation and depth ordering Edge tracking for motion segmentation and depth ordering P. Smith, T. Drummond and R. Cipolla Department of Engineering University of Cambridge Cambridge CB2 1PZ,UK {pas1001 twd20 cipolla}@eng.cam.ac.uk

More information

Are we ready for Autonomous Driving? The KITTI Vision Benchmark Suite

Are we ready for Autonomous Driving? The KITTI Vision Benchmark Suite Are we ready for Autonomous Driving? The KITTI Vision Benchmark Suite Philip Lenz 1 Andreas Geiger 2 Christoph Stiller 1 Raquel Urtasun 3 1 KARLSRUHE INSTITUTE OF TECHNOLOGY 2 MAX-PLANCK-INSTITUTE IS 3

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

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

Automatic parameter regulation for a tracking system with an auto-critical function

Automatic parameter regulation for a tracking system with an auto-critical function Automatic parameter regulation for a tracking system with an auto-critical function Daniela Hall INRIA Rhône-Alpes, St. Ismier, France Email: Daniela.Hall@inrialpes.fr Abstract In this article we propose

More information

Journal of Industrial Engineering Research. Adaptive sequence of Key Pose Detection for Human Action Recognition

Journal of Industrial Engineering Research. Adaptive sequence of Key Pose Detection for Human Action Recognition IWNEST PUBLISHER Journal of Industrial Engineering Research (ISSN: 2077-4559) Journal home page: http://www.iwnest.com/aace/ Adaptive sequence of Key Pose Detection for Human Action Recognition 1 T. Sindhu

More information

VSSN 06 Algorithm Competition

VSSN 06 Algorithm Competition VSSN 06 Algorithm Competition 27. Oct. 2006 Eva Hörster, Rainer Lienhart Multimedia Computing Lab University of Augsburg, Germany Goals Get a valuable resource for the research community Foster and accelerate

More information

A Study on SURF Algorithm and Real-Time Tracking Objects Using Optical Flow

A Study on SURF Algorithm and Real-Time Tracking Objects Using Optical Flow , pp.233-237 http://dx.doi.org/10.14257/astl.2014.51.53 A Study on SURF Algorithm and Real-Time Tracking Objects Using Optical Flow Giwoo Kim 1, Hye-Youn Lim 1 and Dae-Seong Kang 1, 1 Department of electronices

More information

SmartMonitor An Intelligent Security System for the Protection of Individuals and Small Properties with the Possibility of Home Automation

SmartMonitor An Intelligent Security System for the Protection of Individuals and Small Properties with the Possibility of Home Automation Sensors 2014, 14, 9922-9948; doi:10.3390/s140609922 OPEN ACCESS sensors ISSN 1424-8220 www.mdpi.com/journal/sensors Article SmartMonitor An Intelligent Security System for the Protection of Individuals

More information

Vision based approach to human fall detection

Vision based approach to human fall detection Vision based approach to human fall detection Pooja Shukla, Arti Tiwari CSVTU University Chhattisgarh, poojashukla2410@gmail.com 9754102116 Abstract Day by the count of elderly people living alone at home

More information

Robust Pedestrian Detection and Tracking From A Moving Vehicle

Robust Pedestrian Detection and Tracking From A Moving Vehicle Robust Pedestrian Detection and Tracking From A Moving Vehicle Nguyen Xuan Tuong a, Thomas Müller b and Alois Knoll b a Department of Computer Engineering, Nanyang Technological University, Singapore b

More information

Tracking Groups of Pedestrians in Video Sequences

Tracking Groups of Pedestrians in Video Sequences Tracking Groups of Pedestrians in Video Sequences Jorge S. Marques Pedro M. Jorge Arnaldo J. Abrantes J. M. Lemos IST / ISR ISEL / IST ISEL INESC-ID / IST Lisbon, Portugal Lisbon, Portugal Lisbon, Portugal

More information

Traffic Flow Monitoring in Crowded Cities

Traffic Flow Monitoring in Crowded Cities Traffic Flow Monitoring in Crowded Cities John A. Quinn and Rose Nakibuule Faculty of Computing & I.T. Makerere University P.O. Box 7062, Kampala, Uganda {jquinn,rnakibuule}@cit.mak.ac.ug Abstract Traffic

More information

Traffic Monitoring Systems. Technology and sensors

Traffic Monitoring Systems. Technology and sensors Traffic Monitoring Systems Technology and sensors Technology Inductive loops Cameras Lidar/Ladar and laser Radar GPS etc Inductive loops Inductive loops signals Inductive loop sensor The inductance signal

More information

Environmental Remote Sensing GEOG 2021

Environmental Remote Sensing GEOG 2021 Environmental Remote Sensing GEOG 2021 Lecture 4 Image classification 2 Purpose categorising data data abstraction / simplification data interpretation mapping for land cover mapping use land cover class

More information

Rafael Martín & José M. Martínez

Rafael Martín & José M. Martínez A semi-supervised system for players detection and tracking in multi-camera soccer videos Rafael Martín José M. Martínez Multimedia Tools and Applications An International Journal ISSN 1380-7501 DOI 10.1007/s11042-013-1659-6

More information

Recognizing Cats and Dogs with Shape and Appearance based Models. Group Member: Chu Wang, Landu Jiang

Recognizing Cats and Dogs with Shape and Appearance based Models. Group Member: Chu Wang, Landu Jiang Recognizing Cats and Dogs with Shape and Appearance based Models Group Member: Chu Wang, Landu Jiang Abstract Recognizing cats and dogs from images is a challenging competition raised by Kaggle platform

More information

Pedestrian Detection with RCNN

Pedestrian Detection with RCNN Pedestrian Detection with RCNN Matthew Chen Department of Computer Science Stanford University mcc17@stanford.edu Abstract In this paper we evaluate the effectiveness of using a Region-based Convolutional

More information

Neovision2 Performance Evaluation Protocol

Neovision2 Performance Evaluation Protocol Neovision2 Performance Evaluation Protocol Version 3.0 4/16/2012 Public Release Prepared by Rajmadhan Ekambaram rajmadhan@mail.usf.edu Dmitry Goldgof, Ph.D. goldgof@cse.usf.edu Rangachar Kasturi, Ph.D.

More information

Detecting and Tracking Moving Objects for Video Surveillance

Detecting and Tracking Moving Objects for Video Surveillance IEEE Proc. Computer Vision and Pattern Recognition Jun. 3-5, 1999. Fort Collins CO Detecting and Tracking Moving Objects for Video Surveillance Isaac Cohen Gérard Medioni University of Southern California

More information

Video Analytics A New Standard

Video Analytics A New Standard Benefits The system offers the following overall benefits: Tracker High quality tracking engine UDP s embedded intelligent Video Analytics software is fast becoming the standard for all surveillance and

More information

Distributed Vision Processing in Smart Camera Networks

Distributed Vision Processing in Smart Camera Networks Distributed Vision Processing in Smart Camera Networks CVPR-07 Hamid Aghajan, Stanford University, USA François Berry, Univ. Blaise Pascal, France Horst Bischof, TU Graz, Austria Richard Kleihorst, NXP

More information

An automatic system for sports analytics in multi-camera tennis videos

An automatic system for sports analytics in multi-camera tennis videos Workshop on Activity Monitoring by Multiple Distributed Sensing (AMMDS) in conjunction with 2013 10th IEEE International Conference on Advanced Video and Signal Based Surveillance An automatic system for

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

Automatic Traffic Estimation Using Image Processing

Automatic Traffic Estimation Using Image Processing Automatic Traffic Estimation Using Image Processing Pejman Niksaz Science &Research Branch, Azad University of Yazd, Iran Pezhman_1366@yahoo.com Abstract As we know the population of city and number of

More information

The use of computer vision technologies to augment human monitoring of secure computing facilities

The use of computer vision technologies to augment human monitoring of secure computing facilities The use of computer vision technologies to augment human monitoring of secure computing facilities Marius Potgieter School of Information and Communication Technology Nelson Mandela Metropolitan University

More information

A Reliability Point and Kalman Filter-based Vehicle Tracking Technique

A Reliability Point and Kalman Filter-based Vehicle Tracking Technique A Reliability Point and Kalman Filter-based Vehicle Tracing Technique Soo Siang Teoh and Thomas Bräunl Abstract This paper introduces a technique for tracing the movement of vehicles in consecutive video

More information

Vision-Based Blind Spot Detection Using Optical Flow

Vision-Based Blind Spot Detection Using Optical Flow Vision-Based Blind Spot Detection Using Optical Flow M.A. Sotelo 1, J. Barriga 1, D. Fernández 1, I. Parra 1, J.E. Naranjo 2, M. Marrón 1, S. Alvarez 1, and M. Gavilán 1 1 Department of Electronics, University

More information

Learning the Behavior of Users in a Public Space through Video Tracking

Learning the Behavior of Users in a Public Space through Video Tracking Learning the Behavior of Users in a Public Space through Video Tracking Wei Yan Department of Architecture & Computer Science Division University of California, Berkeley weiyan@uclink.berkeley.edu D. A.

More information

The Big Data methodology in computer vision systems

The Big Data methodology in computer vision systems The Big Data methodology in computer vision systems Popov S.B. Samara State Aerospace University, Image Processing Systems Institute, Russian Academy of Sciences Abstract. I consider the advantages of

More information

Automatic 3D Reconstruction via Object Detection and 3D Transformable Model Matching CS 269 Class Project Report

Automatic 3D Reconstruction via Object Detection and 3D Transformable Model Matching CS 269 Class Project Report Automatic 3D Reconstruction via Object Detection and 3D Transformable Model Matching CS 69 Class Project Report Junhua Mao and Lunbo Xu University of California, Los Angeles mjhustc@ucla.edu and lunbo

More information

Real time vehicle detection and tracking on multiple lanes

Real time vehicle detection and tracking on multiple lanes Real time vehicle detection and tracking on multiple lanes Kristian Kovačić Edouard Ivanjko Hrvoje Gold Department of Intelligent Transportation Systems Faculty of Transport and Traffic Sciences University

More information

Research Article Evaluating Multiple Object Tracking Performance: The CLEAR MOT Metrics

Research Article Evaluating Multiple Object Tracking Performance: The CLEAR MOT Metrics Hindawi Publishing Corporation EURASIP Journal on Image and Video Processing Volume 2008, Article ID 246309, 10 pages doi:10.1155/2008/246309 Research Article Evaluating Multiple Object Tracking Performance:

More information

Tracking of Small Unmanned Aerial Vehicles

Tracking of Small Unmanned Aerial Vehicles Tracking of Small Unmanned Aerial Vehicles Steven Krukowski Adrien Perkins Aeronautics and Astronautics Stanford University Stanford, CA 94305 Email: spk170@stanford.edu Aeronautics and Astronautics Stanford

More information

T O B C A T C A S E G E O V I S A T DETECTIE E N B L U R R I N G V A N P E R S O N E N IN P A N O R A MISCHE BEELDEN

T O B C A T C A S E G E O V I S A T DETECTIE E N B L U R R I N G V A N P E R S O N E N IN P A N O R A MISCHE BEELDEN T O B C A T C A S E G E O V I S A T DETECTIE E N B L U R R I N G V A N P E R S O N E N IN P A N O R A MISCHE BEELDEN Goal is to process 360 degree images and detect two object categories 1. Pedestrians,

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

Efficient Background Subtraction and Shadow Removal Technique for Multiple Human object Tracking

Efficient Background Subtraction and Shadow Removal Technique for Multiple Human object Tracking ISSN: 2321-7782 (Online) Volume 1, Issue 7, December 2013 International Journal of Advance Research in Computer Science and Management Studies Research Paper Available online at: www.ijarcsms.com Efficient

More information

A ROBUST BACKGROUND REMOVAL ALGORTIHMS

A ROBUST BACKGROUND REMOVAL ALGORTIHMS A ROBUST BACKGROUND REMOVAL ALGORTIHMS USING FUZZY C-MEANS CLUSTERING ABSTRACT S.Lakshmi 1 and Dr.V.Sankaranarayanan 2 1 Jeppiaar Engineering College, Chennai lakshmi1503@gmail.com 2 Director, Crescent

More information

WATER BODY EXTRACTION FROM MULTI SPECTRAL IMAGE BY SPECTRAL PATTERN ANALYSIS

WATER BODY EXTRACTION FROM MULTI SPECTRAL IMAGE BY SPECTRAL PATTERN ANALYSIS WATER BODY EXTRACTION FROM MULTI SPECTRAL IMAGE BY SPECTRAL PATTERN ANALYSIS Nguyen Dinh Duong Department of Environmental Information Study and Analysis, Institute of Geography, 18 Hoang Quoc Viet Rd.,

More information

Vehicle Tracking System Robust to Changes in Environmental Conditions

Vehicle Tracking System Robust to Changes in Environmental Conditions INORMATION & COMMUNICATIONS Vehicle Tracking System Robust to Changes in Environmental Conditions Yasuo OGIUCHI*, Masakatsu HIGASHIKUBO, Kenji NISHIDA and Takio KURITA Driving Safety Support Systems (DSSS)

More information

Reconstructing 3D Pose and Motion from a Single Camera View

Reconstructing 3D Pose and Motion from a Single Camera View Reconstructing 3D Pose and Motion from a Single Camera View R Bowden, T A Mitchell and M Sarhadi Brunel University, Uxbridge Middlesex UB8 3PH richard.bowden@brunel.ac.uk Abstract This paper presents a

More information

VEHICLE TRACKING USING ACOUSTIC AND VIDEO SENSORS

VEHICLE TRACKING USING ACOUSTIC AND VIDEO SENSORS VEHICLE TRACKING USING ACOUSTIC AND VIDEO SENSORS Aswin C Sankaranayanan, Qinfen Zheng, Rama Chellappa University of Maryland College Park, MD - 277 {aswch, qinfen, rama}@cfar.umd.edu Volkan Cevher, James

More information

Network Video Image Processing for Security, Surveillance, and Situational Awareness

Network Video Image Processing for Security, Surveillance, and Situational Awareness Network Video Image Processing for Security, Surveillance, and Situational Awareness Abhijit Mahalanobis, Jamie Cannon, S. Robert Stanfill, Robert Muise Lockheed Martin, MFC MP 450 5600 Sand Lake Road

More information

A General Framework for Tracking Objects in a Multi-Camera Environment

A General Framework for Tracking Objects in a Multi-Camera Environment A General Framework for Tracking Objects in a Multi-Camera Environment Karlene Nguyen, Gavin Yeung, Soheil Ghiasi, Majid Sarrafzadeh {karlene, gavin, soheil, majid}@cs.ucla.edu Abstract We present a framework

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

VEHICLE TRACKING AND SPEED ESTIMATION SYSTEM CHAN CHIA YIK. Report submitted in partial fulfillment of the requirements

VEHICLE TRACKING AND SPEED ESTIMATION SYSTEM CHAN CHIA YIK. Report submitted in partial fulfillment of the requirements VEHICLE TRACKING AND SPEED ESTIMATION SYSTEM CHAN CHIA YIK Report submitted in partial fulfillment of the requirements for the award of the degree of Bachelor of Computer System & Software Engineering

More information

BACnet for Video Surveillance

BACnet for Video Surveillance The following article was published in ASHRAE Journal, October 2004. Copyright 2004 American Society of Heating, Refrigerating and Air-Conditioning Engineers, Inc. It is presented for educational purposes

More information

Computer Vision Algorithms for Intersection Monitoring

Computer Vision Algorithms for Intersection Monitoring 78 IEEE TRANSACTIONS ON INTELLIGENT TRANSPORTATION SYSTEMS, VOL. 4, NO. 2, JUNE 2003 Computer Vision Algorithms for Intersection Monitoring Harini Veeraraghavan, Osama Masoud, and Nikolaos P. Papanikolopoulos,

More information

RIVA Megapixel cameras with integrated 3D Video Analytics - The next generation

RIVA Megapixel cameras with integrated 3D Video Analytics - The next generation RIVA Megapixel cameras with integrated 3D Video Analytics - The next generation Creating intelligent solutions with Video Analytics (VCA- Video Content Analysis) Intelligent IP video surveillance is one

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

Real Time Target Tracking with Pan Tilt Zoom Camera

Real Time Target Tracking with Pan Tilt Zoom Camera 2009 Digital Image Computing: Techniques and Applications Real Time Target Tracking with Pan Tilt Zoom Camera Pankaj Kumar, Anthony Dick School of Computer Science The University of Adelaide Adelaide,

More information

Professor, D.Sc. (Tech.) Eugene Kovshov MSTU «STANKIN», Moscow, Russia

Professor, D.Sc. (Tech.) Eugene Kovshov MSTU «STANKIN», Moscow, Russia Professor, D.Sc. (Tech.) Eugene Kovshov MSTU «STANKIN», Moscow, Russia As of today, the issue of Big Data processing is still of high importance. Data flow is increasingly growing. Processing methods

More information

A feature-based tracking algorithm for vehicles in intersections

A feature-based tracking algorithm for vehicles in intersections A feature-based tracking algorithm for vehicles in intersections Nicolas Saunier and Tarek Sayed Departement of Civil Engineering, University of British Columbia 6250 Applied Science Lane, Vancouver BC

More information

Model-based vehicle detection and classification using orthographic approximations*

Model-based vehicle detection and classification using orthographic approximations* Model-based vehicle detection and classification using orthographic approximations* G D Sullivan, K D Baker, A D Worrall, C I Attwood and P R Remagnino Department of Computer Science, The University of

More information

An Open Source Tracking Testbed and Evaluation Web Site

An Open Source Tracking Testbed and Evaluation Web Site An Open Source Tracking Testbed and Evaluation Web Site Robert Collins, Xuhui Zhou, Seng Keat Teh Robotics Institute, Carnegie Mellon University [rcollins, xuhui, steh]@cs.cmu.edu Abstract: We have implemented

More information

Social Media Mining. Data Mining Essentials

Social Media Mining. Data Mining Essentials Introduction Data production rate has been increased dramatically (Big Data) and we are able store much more data than before E.g., purchase data, social media data, mobile phone data Businesses and customers

More information

Vehicle Tracking by Simultaneous Detection and Viewpoint Estimation

Vehicle Tracking by Simultaneous Detection and Viewpoint Estimation Vehicle Tracking by Simultaneous Detection and Viewpoint Estimation Ricardo Guerrero-Gómez-Olmedo, Roberto López-Sastre, Saturnino Maldonado-Bascón, and Antonio Fernández-Caballero 2 GRAM, Department of

More information

Integration of GPS Traces with Road Map

Integration of GPS Traces with Road Map Integration of GPS Traces with Road Map Lijuan Zhang Institute of Cartography and Geoinformatics Leibniz University of Hannover Hannover, Germany +49 511.762-19437 Lijuan.Zhang@ikg.uni-hannover.de Frank

More information

A Prototype System for Truck Signal Priority (TkSP) using Video Sensors

A Prototype System for Truck Signal Priority (TkSP) using Video Sensors A Prototype System for Truck Signal Priority (TkSP) using Video Sensors Nicolas Saunier, University of British Columbia Tarek Sayed, University of British Columbia Clark Lim, University of British Columbia

More information

Autonomous Monitoring of Cliff Nesting Seabirds using Computer Vision

Autonomous Monitoring of Cliff Nesting Seabirds using Computer Vision Autonomous Monitoring of Cliff Nesting Seabirds using Computer Vision Patrick Dickinson 1, Robin Freeman 2, Sam Patrick 3 and Shaun Lawson 1 1 Dept. of Computing and Informatics University of Lincoln Lincoln

More information

HSI BASED COLOUR IMAGE EQUALIZATION USING ITERATIVE n th ROOT AND n th POWER

HSI BASED COLOUR IMAGE EQUALIZATION USING ITERATIVE n th ROOT AND n th POWER HSI BASED COLOUR IMAGE EQUALIZATION USING ITERATIVE n th ROOT AND n th POWER Gholamreza Anbarjafari icv Group, IMS Lab, Institute of Technology, University of Tartu, Tartu 50411, Estonia sjafari@ut.ee

More information

Method for Traffic Flow Estimation using Ondashboard

Method for Traffic Flow Estimation using Ondashboard Method for Traffic Flow Estimation using Ondashboard Camera Image Kohei Arai Graduate School of Science and Engineering Saga University Saga, Japan Steven Ray Sentinuwo Department of Electrical Engineering

More information