Real-time Traffic Congestion Detection Based on Video Analysis

Size: px
Start display at page:

Download "Real-time Traffic Congestion Detection Based on Video Analysis"

Transcription

1 Journal of Information & Computational Science 9: 10 (2012) Available at Real-time Traffic Congestion Detection Based on Video Analysis Shan Hu a,, Jiansheng Wu a, Ling Xu b a School of Software, University of Science and Technology Liaoning, Anshan , China b School of Resources and Civil Engineering, University of Science and Technology Liaoning Anshan , China Abstract To detect the real-time information of the traffic congestion on the road, a method based on real-time video analysis was presented. First of all, the density of the vehicles on the lane as an important factor in traffic congestion was obtained by dynamic information of the moving vehicles on lane. Secondly, the speed of vehicles is calculated by the optical flow field on the corner points of vehicles. Finally, judges the current condition of the traffic flow by fuzzy logic based on the conditions of density and velocity of the vehicles. The proposed method is able to accurately and timely detect the status of traffic congestion. Keywords: Congestion Detection; Frame Difference; Moving Locus; Lane Detection; Corner Point; Optical Flow; Fuzzy Logic Decision 1 Introduction With the fast development of automobile industry, traffic congestion becomes a troublesome problem that perplexes many modern cities around the world. To reduce negative effect of traffic congestion, Intelligent Transportation Systems (ITS), as an efficient way to solve traffic congestion problem, are currently being paid more attention to by more and more researchers. In order to design an efficient traffic management system, ITS should obtain one critical capacity to effectively monitor the traffic conditions and rapidly detect traffic congestion. Maurin [1] designed a system which addresses a multi-level approach to monitoring traffic scenes using the technologies of optical flow, Kalman filtering, and blob merging. Yu [2] proposed a tracking based algorithm that extracts traffic information from compressed video and uses the ratio between the moving blocks and all blocks to estimate traffic situation. Chan [3] used dynamical texture model to identify the traffic scene. Porikli [4] presented a traffic congestion estimation method that directly extracts features in the MPEG compressed domain with HMM. However most of these systems are either designed for specific camera setups or computationally Project supported by Department of Education of Liaoning Province (No. L ) Corresponding author. address: [email protected] (Shan Hu) / Copyright 2012 Binary Information Press September 15, 2012

2 2908 S. Hu et al. / Journal of Information & Computational Science 9: 10 (2012) expensive. In this paper, we present a novel approach for detecting condition of traffic congestion based on real-time video. The paper is organized as follows: in Section 2, we discuss the method that could detect the density of vehicles on lane, followed by the proposed algorithm that could calculate vehicle velocity based on the optical flow vector of the corner points on vehicles in Section 3. In Section 4, we present fuzzy logic judgment system based on density and velocity of vehicles. 2 Density Detection Based on Information of the Moving Vehicles The density of vehicles is an important factor in the detection of traffic congestion. Sometime, we can use the density of vehicles on lane to judge the degree of congestion. In this paper, the density of vehicles is detection by following procedure: 1) Moving vehicles detection based on frame difference 2) Lane detection based on accumulating vehicles moving locus. 2.1 Moving Vehicles Detection Based on Difference Between Frames Frame-difference methods [5, 6] have been used widely for moving target detection. In this work, frame-difference methods were employed to detect the moving region of the moving vehicles. The steps of the algorithm that detect the moving vehicles as follow: 1) Change the RGB image to gray image 2) Subtract the two adjacent frames; 3) Employ the median filter to get rid of noise points; 4) Check the difference result by Eq. (1) to get an binary image; 5) Apply the morphology operation of close to process the binary image And fill region of vehicles; Diff n (x, y) = { 1 if It (x, y) I t+1 (x, y) > T 0 others (1) where I t (x, y) and I t+1 (x, y) are the gray value of spatial location (x, y) in frame t and frame t + 1. T is a experimental threshold, here we choose 30 as the threshold. The result of the above algorithm is showed in Fig Lane Detection Based on Moving Locus of Vehicles With the development of ITS based on vision, many methods to detect the lane region spring up. Currently, the methods to detect lane region mainly focus on structured lanes and unstructured lanes. For structured lanes, the localization of lane borders or lane markings is one of the most commonly used approaches. Color cue [8], Hough transform [7, 10], Spline model [9] etc. have been

3 S. Hu et al. / Journal of Information & Computational Science 9: 10 (2012) Fig. 1: Detected moving vehicles. Left image is original image. Right image shows the result of detected vehicles on the lane. utilized to find the road boundaries or markings. The drawbacks of these methods are that they only consistently work for structured roads with noticeable markings or borders. For unstructured lane, lane detection methods primarily take lane features into account. These methods catch key point on color, intensity or texture information between lane region and the non-lane region [11], are usually insensitive to road shapes, but sensitive to illumination, shadows and water marks. In this paper, we take a new and easy way to detect lane by tracking moving locus of vehicles. In order to detect lane, the region of the lane will automatically been created by the way of accumulating the locus of moving vehicles. The lane-detection algorithm based on accumulation of the moving vehicles locus mainly involves two procedures: 1) Accumulating the region of moving vehicles. Due to the locus of moving vehicles is part of lane, the region of the whole lane can be got by continuously accumulating the locus of moving vehicles. The process of the accumulating moving vehicles locus is shown by Fig. 2. 2) Using the morphology operation of close to concatenate the area as an entirety region. Sometimes, there are some small holes in the region of lane that is accumulated by moving vehicles locus. However, the morphology operation close can be used to fill in particular regions of an image. The result of close operation on region of accumulated moving vehicles locus is shown in Fig. 3. Accumulating 3 frames Accumulating 7 frames Accumulating 15 frames Accumulating 25 frames Fig. 2: Procedure of accumulating moving vehicles locus 2.3 Vehicle Density Detection After acquiring the moving vehicles binary image, it is easy to compute out the area of moving vehicles A vehicles on the lane through counting the number of pixels that represents the vehicles. In the same way, the area of lane A lane can be represented by lane binary image. The density of

4 2910 S. Hu et al. / Journal of Information & Computational Science 9: 10 (2012) Fig. 3: Result of lane detected by accumulating locus vehicle on the lane can been figured out by formula as following Eq. (2): DEN = A vehicles /A lane (2) 3 Speed Estimation Based on Optical Flow Field In order to estimate the speed of moving vehicles, velocity vectors of a sufficient number of reference points identified on the vehicle must be figured out. This procedure involves three main steps. Firstly, a sufficient number of feature points from the vehicle are selected, and these points must be accurately tracked on at least two successive video frames. Secondly, the velocity vectors of feature points are computed based on optical flow estimation. 3.1 Feature Points Detection In order to track moving vehicles within video frames, points to be tracked which belong to the vehicles on the successive video frames, should be selected automatically. It is well known that good features to be tracked are corner points which have large spatial gradients in two orthogonal directions. One of the most frequently used definitions of a corner point is given in [12]. This definition defines a corner point by a matrix which is expressed by second order derivatives. The Hessian matrix in 2D space is defined by Eq. (3): 2 I x 2 2 I y x 2 I x y 2 I y 2 (3) In our system, as soon as the camera begins to acquire image, corner points are selected continuously in real time from the frame images. On the first frame, points are selected and on the next frames those points are tracked and instantaneous velocity vectors of those points are computed. In our system, we restrict the number of points between 20 and 100 and at least 20 points are selected in the worst case.

5 S. Hu et al. / Journal of Information & Computational Science 9: 10 (2012) Optical Flow Vector Calculation For speed estimation, correspondence of each selected point on the first frame on which the vehicle appears for the first time, must be found on the next frame. In order to find the corresponding point, there is no prior information other than the point itself, and it seems that it is not also possible to find exactly where the match point is. However, if we assume that each image in the each frame is flowing by the very short time period and thus changing the position during the flow, then a modeling approach which models this flow event can be used. These kinds of flow model are called optical flow [13, 14]. The optical flow can been calculated based on the assumption that the intensity values of a selected point p(t) and its neighbors on the frame image I(t) do not change on the next frame I(t + t), where t is a very short time period. So the assumption can be written in mathematical form as follows Eq. (4): I (p (x, y, t), t) = I (p (x + x, y + y, t + t), t + t) (4) where I(p, t) is the intensity value of a point p on the image I(t). Eq. (4) says that the intensity of the point p on the current image frame does not change during the time period t that passed. In the more mathematical sense, change rate of I(p, t) is zero over time period t, this last situation is formally written as follows: I (p (x, y, t), t) t = I (p, t) p (t) + I p t t = 0 (5) In Eq. (5), the derivative di/dp is spatial derivative at point p on the image frame I(t). Thus it can be expressed by di/dp = di. We can write this expression in explicit form as follows: p (t) t = t (xi + yj) = x t i + y t j (6) It can easily be seen that the vector ( x/ t)i is equal to the velocity of the point p in the x-axis direction. In other words, it is the x component namely v x component of the velocity vector v. In similar way, the vector ( y/ t)j is the y component namely v y component of the velocity vector v. Now we can rewrite the Eq. (6) as follows: p (t) t = v = v x i + v y j (7) It is seen that the derivative I/ t = I t expresses the change rate of the intensity values at point p, between the frame images I(t) and I(t + t) Eq. (5) can be rewritten as follows: Iv + I t = 0 (8) Then Eq. (8) can be written as: [ I x I y ] [ v x v y ] = I t (9)

6 2912 S. Hu et al. / Journal of Information & Computational Science 9: 10 (2012) The values of I x, I y and I t in Eq. (9) can easily be computed from the frame images. The variables v x and v y are two unknown components of the velocity vector v and these are respectively the components in the directions x and y axes of the image coordinate system. In Eq. (9), we have two unknowns to be solved, but we only have one equation. Since only one equation is not enough for unique solution of the unknowns, at the moment it seems not possible to solve these unknowns. In order to solve these two unknowns, we need more independent equations. For this purpose, the third assumption of the Lukas-Kanade algorithm is used. That is, point p behaves together with its neighbors. So its neighbors must also satisfy the Eq. (9). In other words, neighbor points (or pixels) of point p must move with the same velocity v(v x, v y ). According to these explanations, the same equations as (9) are written for 3 3 or 5 5 neighborhood of the point p. In this case, we totally have 9 or 25 equations with the same unknown v x and v y. Now the unknowns can be solved with over determined set of Eq. (9) by using least squares or total least squares estimation method. The result of the optical flow velocity on the corner point that is estimated by Lukas-Kanade Optical Flow Method is show as Fig. 4. Fig. 4: The optical flow velocity on the corner point of vehicles 3.3 Velocity of Vehicles Calculation In general, there are many vehicles on lane at the same time. There is no need to take into account all velocity vectors on vehicles. In this system, the greatest 20 velocity vectors of corner points on vehicles were selected as the sample velocity vectors to express the current status of vehicle velocity on lane. The average of these 20 velocity vector can be written as Eq. (10) V mean = v /20 (10) In order to normalizing the velocity, the current velocity status can be written as Eq. (11) V = V mean /V max (11) The V max in Eq. (11) is the maximum velocity vector when vehicle run at maximum velocity on lane. 4 Fuzzy Logic Decision As pointed out in [15], the use of definite boundaries between traffic categories may lead to high error rates when operating near the categories boundaries. This is due to the intrinsic nature of

7 S. Hu et al. / Journal of Information & Computational Science 9: 10 (2012) the traffic flows whose variations (e.g. from free flow to traffic jam) follow a continuous process [16], and consequently no clear boundaries exist between the distinct traffic flow statuses. This uncertainty in the definition of the boundaries between different categories makes fuzzy-logicbased systems especially suitable for addressing complex non-deterministic decision problems such as the identification of traffic congestion. To identify the real-time condition of the traffic flow, we use the fuzzy logic system to detect the state of the current traffic flow by the input variable: density of the vehicles on the lane and velocity vector estimated through optical flow equation. As in any fuzzy-based decision system, the input variables are first classified into different fuzzy sets. The possible fuzzy sets for the speed are very slow, slow, medium and fast. For traffic density, the defined fuzzy sets are low, medium, high and very high. One of the main particularities of fuzzy logic is that a fuzzy set can contain elements with partial degree of membership, and consequently, an input value can belong to several fuzzy sets at the same time. In order to determine the degree of membership of the input values to each of the fuzzy sets, membership functions are employed. The membership functions used in this system are illustrated in Fig. 5 (a) and Fig. 1 (b). In addition, output fuzzy sets corresponding to the different traffic categories have also been defined with free-flow=0, slight congestion=1/3, moderate congestion=2/3 and severe congestion=1. To finalize the definition of the fuzzy-based congestion detection system, fuzzy rules that relate the input (speed and density) and the output fuzzy sets (congestion levels) have been established and are displayed in Table 1. The output of the traffic jam quantification system is a continuous value within the interval [0, 1] indicating the level of congestion (traffic jam intensity), with 0 representing free flow and 1 severe traffic congestion. 1.0 low medium high veryhigh 1.0 veryslow slow medium fast (a) Traffic density membership function (b) Speed membership functions Fig. 5: Input variable membership functions Table 1: Fuzzy rules relating input speed and density sets with output congestion condition Congestion level Traffic density low medium high very high Speed Very slow slight moderate serious serious slow slight slight moderate serious medium free slight moderate moderate fast free free slight moderate

8 2914 S. Hu et al. / Journal of Information & Computational Science 9: 10 (2012) Conclusion Real-time and accurate traffic condition on the road is important information to intelligent transport system. To realize the real-time and reliable traffic congestion information acquisition system, the computational complexity is an important consideration. The presented method in this paper provides a easy way to obtain the density of lane and velocity vectors of vehicles. At the same time, this method that uses the density of lane and velocity vector of vehicle as input variable for fuzzy logic decision system can both enhance accuracy of system and reduce verdict time. The accurate and timely traffic congestion information can been used to control the signal light at road junctions and also can been sent to driver to avoid recurring congestion. References [1] N. Vasconcelos, Classification and retrieval of traffic video using auto regressive stochastic processes. Proceedings of 2005 IEEE Intelligent Vehicles Symposium, [2] B. Maurin, O. Masoud, N. Papanikolopoulos, Monitoring crowded traffic scenes. IEEE Int l Conference on Intelligent Transportation Systems, 2002, [3] X. D. Yu, L. Y. Duan, Q. Tian, Highway traffic information extraction from Skycam MPEG video. IEEE Int l Conference on Intelligent Transportation Systems, 2002, [4] Fatih Porikli, Xiaokun Li, Traffic congestion estimation using HMM models without vehicle tracking, 2004 IEEE Intelligent Vehicles Symposium, [5] R. T. Collins, A. J. Lipton, T. Kanade et al., A System for Video Surveillance and Monitoring, VSAM Final Report. Pittsburgh Carnegie Mellon University. CMU-RI-TR-00-12, 2000 [6] C. Zhan, X. Duan, S. Xu et al., An improved moving object detection algorithm based on frame difference and edge detection. Proc. of the 4th International Conference on Image and Graphics, 2007, [7] J. B. Southhall, C. Taylor. Stochastic road shape estimation. ICCV, 2001, [8] Tsung-Ying Sun, Shang-Jeng Tsai, V. Chan. HSI color model based lane-marking detection. IEEE Intelligent Transportation Systems Conference, 2006, [9] Y. Wang, E. K. Teoh, D. Shen. Lane detection and tracking using b-snake. Image and Vision Computing, 22(4), 2004, [10] B. Yu, A. K. Jain. Lane boundary detection using a multiresolution hough transform. ICIP, 1997, [11] Morten Rufus Blas, Motilal Agrawal, Aravind Sundaresan, Kurt Konolige, Fast color/texture segmentation for outdoor robots IEEE/RSJ International Conference on Intelligent Robots and Systems Acropolis Convention Center Nice, France, Sept. 2008, [12] C. Harris, M. Stephens, A combined corner and edge detector. In Proceedings of the 4th Alvey Vision Conference, Manchester, England, 31 Aug.-2 Sept., 1988, [13] B. K. P. Horn, B. G. Schunck, Determining optical flow. Artif. Intell. 17, 1981, [14] B. D. Lucas, T. Kanade, An iterative image registration technique with an application to stereo vision. In Proceedings of the DARPA Image Understanding Workshop, Washington, USA, Jun. 1981, [15] X. Binglei et al., Fuzzy-logic-based traffic incident detection algorithm for freeway. Proc. of the 7th ICMLC, Kunming, Jul. 2008, [16] J. Lu, L. Cao, Congestion evaluation from traffic flow information based on fuzzy logic, Proc. of the IEEE International Conference on ITS, Shanghai, Oct. 2003, 50-53

ROBUST VEHICLE TRACKING IN VIDEO IMAGES BEING TAKEN FROM A HELICOPTER

ROBUST VEHICLE TRACKING IN VIDEO IMAGES BEING TAKEN FROM A HELICOPTER ROBUST VEHICLE TRACKING IN VIDEO IMAGES BEING TAKEN FROM A HELICOPTER Fatemeh Karimi Nejadasl, Ben G.H. Gorte, and Serge P. Hoogendoorn Institute of Earth Observation and Space System, Delft 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

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 [email protected] [email protected] Abstract A vehicle tracking and grouping algorithm is presented in this work

More information

Feature Tracking and Optical Flow

Feature Tracking and Optical Flow 02/09/12 Feature Tracking and Optical Flow Computer Vision CS 543 / ECE 549 University of Illinois Derek Hoiem Many slides adapted from Lana Lazebnik, Silvio Saverse, who in turn adapted slides from Steve

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 [email protected] Abstract As we know the population of city and number of

More information

FLEXSYS Motion-based Traffic Analysis and Incident Detection

FLEXSYS Motion-based Traffic Analysis and Incident Detection FLEXSYS Motion-based Traffic Analysis and Incident Detection Authors: Lixin Yang and Hichem Sahli, IBBT/VUB-ETRO Contents.1 Introduction......................................... 1.2 Traffic flow modelling

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

Building an Advanced Invariant Real-Time Human Tracking System

Building an Advanced Invariant Real-Time Human Tracking System UDC 004.41 Building an Advanced Invariant Real-Time Human Tracking System Fayez Idris 1, Mazen Abu_Zaher 2, Rashad J. Rasras 3, and Ibrahiem M. M. El Emary 4 1 School of Informatics and Computing, German-Jordanian

More information

Circle Object Recognition Based on Monocular Vision for Home Security Robot

Circle Object Recognition Based on Monocular Vision for Home Security Robot Journal of Applied Science and Engineering, Vol. 16, No. 3, pp. 261 268 (2013) DOI: 10.6180/jase.2013.16.3.05 Circle Object Recognition Based on Monocular Vision for Home Security Robot Shih-An Li, Ching-Chang

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

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

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

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

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

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

Tracking Moving Objects In Video Sequences Yiwei Wang, Robert E. Van Dyck, and John F. Doherty Department of Electrical Engineering The Pennsylvania State University University Park, PA16802 Abstract{Object

More information

How To Filter Spam Image From A Picture By Color Or Color

How To Filter Spam Image From A Picture By Color Or Color Image Content-Based Email Spam Image Filtering Jianyi Wang and Kazuki Katagishi Abstract With the population of Internet around the world, email has become one of the main methods of communication among

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

Cloud tracking with optical flow for short-term solar forecasting

Cloud tracking with optical flow for short-term solar forecasting Cloud tracking with optical flow for short-term solar forecasting Philip Wood-Bradley, José Zapata, John Pye Solar Thermal Group, Australian National University, Canberra, Australia Corresponding author:

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

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 - [email protected]

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: [email protected] Aeronautics and Astronautics Stanford

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

Determining optimal window size for texture feature extraction methods

Determining optimal window size for texture feature extraction methods IX Spanish Symposium on Pattern Recognition and Image Analysis, Castellon, Spain, May 2001, vol.2, 237-242, ISBN: 84-8021-351-5. Determining optimal window size for texture feature extraction methods Domènec

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 [email protected] b Department of Computer

More information

Object tracking & Motion detection in video sequences

Object tracking & Motion detection in video sequences Introduction Object tracking & Motion detection in video sequences Recomended link: http://cmp.felk.cvut.cz/~hlavac/teachpresen/17compvision3d/41imagemotion.pdf 1 2 DYNAMIC SCENE ANALYSIS The input to

More information

A Method of Caption Detection in News Video

A Method of Caption Detection in News Video 3rd International Conference on Multimedia Technology(ICMT 3) A Method of Caption Detection in News Video He HUANG, Ping SHI Abstract. News video is one of the most important media for people to get information.

More information

A Fast Algorithm for Multilevel Thresholding

A Fast Algorithm for Multilevel Thresholding JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 17, 713-727 (2001) A Fast Algorithm for Multilevel Thresholding PING-SUNG LIAO, TSE-SHENG CHEN * AND PAU-CHOO CHUNG + Department of Electrical Engineering

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

Research on Trust Management Strategies in Cloud Computing Environment

Research on Trust Management Strategies in Cloud Computing Environment Journal of Computational Information Systems 8: 4 (2012) 1757 1763 Available at http://www.jofcis.com Research on Trust Management Strategies in Cloud Computing Environment Wenjuan LI 1,2,, Lingdi PING

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

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

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

Object tracking in video scenes

Object tracking in video scenes A Seminar On Object tracking in video scenes Presented by Alok K. Watve M.Tech. IT 1st year Indian Institue of Technology, Kharagpur Under the guidance of Dr. Shamik Sural Assistant Professor School of

More information

The Dynamic Background Generation Scheme Using an Image Frame

The Dynamic Background Generation Scheme Using an Image Frame The Dynamic Background Generation Scheme Using an Image Frame Statistical Comparison Method *1, Corresponding Author Wen-Yuan Chen, Department of Electronic Engineering, National Chin-Yi University of

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

A Dynamic Approach to Extract Texts and Captions from Videos

A Dynamic Approach to Extract Texts and Captions from Videos 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. 4, April 2014,

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 [email protected] The Open Electrical & Electronic Engineering Journal, 2014, 8, 599-604 599 Open Access A Facial Expression Recognition Algorithm Based on Local Binary

More information

LOCAL SURFACE PATCH BASED TIME ATTENDANCE SYSTEM USING FACE. [email protected]

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

Morphological segmentation of histology cell images

Morphological segmentation of histology cell images Morphological segmentation of histology cell images A.Nedzved, S.Ablameyko, I.Pitas Institute of Engineering Cybernetics of the National Academy of Sciences Surganova, 6, 00 Minsk, Belarus E-mail [email protected]

More information

Medical Image Segmentation of PACS System Image Post-processing *

Medical Image Segmentation of PACS System Image Post-processing * Medical Image Segmentation of PACS System Image Post-processing * Lv Jie, Xiong Chun-rong, and Xie Miao Department of Professional Technical Institute, Yulin Normal University, Yulin Guangxi 537000, China

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

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

Fall detection in the elderly by head tracking

Fall detection in the elderly by head tracking Loughborough University Institutional Repository Fall detection in the elderly by head tracking This item was submitted to Loughborough University's Institutional Repository by the/an author. Citation:

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

Real-Time Background Estimation of Traffic Imagery Using Group-Based Histogram *

Real-Time Background Estimation of Traffic Imagery Using Group-Based Histogram * JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 24, 411-423 (2008) Real-Time Background Estimation of Traffic Imagery Using Group-Based Histogram KAI-TAI SONG AND JEN-CHAO TAI + Department of Electrical

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

The Scientific Data Mining Process

The Scientific Data Mining Process Chapter 4 The Scientific Data Mining Process When I use a word, Humpty Dumpty said, in rather a scornful tone, it means just what I choose it to mean neither more nor less. Lewis Carroll [87, p. 214] In

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

OBJECT TRACKING USING LOG-POLAR TRANSFORMATION

OBJECT TRACKING USING LOG-POLAR TRANSFORMATION OBJECT TRACKING USING LOG-POLAR TRANSFORMATION A Thesis Submitted to the Gradual Faculty of the Louisiana State University and Agricultural and Mechanical College in partial fulfillment of the requirements

More information

DYNAMIC RANGE IMPROVEMENT THROUGH MULTIPLE EXPOSURES. Mark A. Robertson, Sean Borman, and Robert L. Stevenson

DYNAMIC RANGE IMPROVEMENT THROUGH MULTIPLE EXPOSURES. Mark A. Robertson, Sean Borman, and Robert L. Stevenson c 1999 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or

More information

Detection and Restoration of Vertical Non-linear Scratches in Digitized Film Sequences

Detection and Restoration of Vertical Non-linear Scratches in Digitized Film Sequences Detection and Restoration of Vertical Non-linear Scratches in Digitized Film Sequences Byoung-moon You 1, Kyung-tack Jung 2, Sang-kook Kim 2, and Doo-sung Hwang 3 1 L&Y Vision Technologies, Inc., Daejeon,

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: [email protected] Tel: 1-206-616-2696 For Exchange with University of Nevada Reno Sept. 25,

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

Subspace Analysis and Optimization for AAM Based Face Alignment

Subspace Analysis and Optimization for AAM Based Face Alignment Subspace Analysis and Optimization for AAM Based Face Alignment Ming Zhao Chun Chen College of Computer Science Zhejiang University Hangzhou, 310027, P.R.China [email protected] Stan Z. Li Microsoft

More information

A Learning Based Method for Super-Resolution of Low Resolution Images

A Learning Based Method for Super-Resolution of Low Resolution Images A Learning Based Method for Super-Resolution of Low Resolution Images Emre Ugur June 1, 2004 [email protected] Abstract The main objective of this project is the study of a learning based method

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

Two-Frame Motion Estimation Based on Polynomial Expansion

Two-Frame Motion Estimation Based on Polynomial Expansion Two-Frame Motion Estimation Based on Polynomial Expansion Gunnar Farnebäck Computer Vision Laboratory, Linköping University, SE-581 83 Linköping, Sweden [email protected] http://www.isy.liu.se/cvl/ Abstract.

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 [email protected]

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

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

Introduction to Robotics Analysis, Systems, Applications

Introduction to Robotics Analysis, Systems, Applications Introduction to Robotics Analysis, Systems, Applications Saeed B. Niku Mechanical Engineering Department California Polytechnic State University San Luis Obispo Technische Urw/carsMt Darmstadt FACHBEREfCH

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

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 [email protected] 2 Director, Crescent

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

Traffic Estimation and Least Congested Alternate Route Finding Using GPS and Non GPS Vehicles through Real Time Data on Indian Roads

Traffic Estimation and Least Congested Alternate Route Finding Using GPS and Non GPS Vehicles through Real Time Data on Indian Roads Traffic Estimation and Least Congested Alternate Route Finding Using GPS and Non GPS Vehicles through Real Time Data on Indian Roads Prof. D. N. Rewadkar, Pavitra Mangesh Ratnaparkhi Head of Dept. Information

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

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

A Study on M2M-based AR Multiple Objects Loading Technology using PPHT

A Study on M2M-based AR Multiple Objects Loading Technology using PPHT A Study on M2M-based AR Multiple Objects Loading Technology using PPHT Sungmo Jung, Seoksoo Kim * Department of Multimedia Hannam University 133, Ojeong-dong, Daedeok-gu, Daejeon-city Korea [email protected],

More information

A Counting Algorithm and Application of Image-Based Printed Circuit Boards

A Counting Algorithm and Application of Image-Based Printed Circuit Boards Tamkang Journal of Science and Engineering, Vol. 12, No. 4, pp. 471 479 (2009) 471 A Counting Algorithm and Application of Image-Based Printed Circuit Boards Ping-Huang Wu 1 * and Chin-Hwa Kuo 2 1 Department

More information

An Evaluation Model for Determining Insurance Policy Using AHP and Fuzzy Logic: Case Studies of Life and Annuity Insurances

An Evaluation Model for Determining Insurance Policy Using AHP and Fuzzy Logic: Case Studies of Life and Annuity Insurances Proceedings of the 8th WSEAS International Conference on Fuzzy Systems, Vancouver, British Columbia, Canada, June 19-21, 2007 126 An Evaluation Model for Determining Insurance Policy Using AHP and Fuzzy

More information

Assessment. Presenter: Yupu Zhang, Guoliang Jin, Tuo Wang Computer Vision 2008 Fall

Assessment. Presenter: Yupu Zhang, Guoliang Jin, Tuo Wang Computer Vision 2008 Fall Automatic Photo Quality Assessment Presenter: Yupu Zhang, Guoliang Jin, Tuo Wang Computer Vision 2008 Fall Estimating i the photorealism of images: Distinguishing i i paintings from photographs h Florin

More information

COMPARISON OF OBJECT BASED AND PIXEL BASED CLASSIFICATION OF HIGH RESOLUTION SATELLITE IMAGES USING ARTIFICIAL NEURAL NETWORKS

COMPARISON OF OBJECT BASED AND PIXEL BASED CLASSIFICATION OF HIGH RESOLUTION SATELLITE IMAGES USING ARTIFICIAL NEURAL NETWORKS COMPARISON OF OBJECT BASED AND PIXEL BASED CLASSIFICATION OF HIGH RESOLUTION SATELLITE IMAGES USING ARTIFICIAL NEURAL NETWORKS B.K. Mohan and S. N. Ladha Centre for Studies in Resources Engineering IIT

More information

Detecting and positioning overtaking vehicles using 1D optical flow

Detecting and positioning overtaking vehicles using 1D optical flow Detecting and positioning overtaking vehicles using 1D optical flow Daniel Hultqvist 1, Jacob Roll 1, Fredrik Svensson 1, Johan Dahlin 2, and Thomas B. Schön 3 Abstract We are concerned with the problem

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

Deterministic Sampling-based Switching Kalman Filtering for Vehicle Tracking

Deterministic Sampling-based Switching Kalman Filtering for Vehicle Tracking Proceedings of the IEEE ITSC 2006 2006 IEEE Intelligent Transportation Systems Conference Toronto, Canada, September 17-20, 2006 WA4.1 Deterministic Sampling-based Switching Kalman Filtering for Vehicle

More information

T-REDSPEED White paper

T-REDSPEED White paper T-REDSPEED White paper Index Index...2 Introduction...3 Specifications...4 Innovation...6 Technology added values...7 Introduction T-REDSPEED is an international patent pending technology for traffic violation

More information

A Survey of Video Processing with Field Programmable Gate Arrays (FGPA)

A Survey of Video Processing with Field Programmable Gate Arrays (FGPA) A Survey of Video Processing with Field Programmable Gate Arrays (FGPA) Heather Garnell Abstract This paper is a high-level, survey of recent developments in the area of video processing using reconfigurable

More information

Object Tracking System Using Motion Detection

Object Tracking System Using Motion Detection Object Tracking System Using Motion Detection Harsha K. Ingle*, Prof. Dr. D.S. Bormane** *Department of Electronics and Telecommunication, Pune University, Pune, India Email: [email protected] **Department

More information

Canny Edge Detection

Canny Edge Detection Canny Edge Detection 09gr820 March 23, 2009 1 Introduction The purpose of edge detection in general is to significantly reduce the amount of data in an image, while preserving the structural properties

More information

Defog Image Processing

Defog Image Processing Introduction Expectations for a camera s performance, no matter the application, are that it must work and provide clear usable images, regardless of any environmental or mechanical challenges the camera

More information

A Method for Controlling Mouse Movement using a Real- Time Camera

A Method for Controlling Mouse Movement using a Real- Time Camera A Method for Controlling Mouse Movement using a Real- Time Camera Hojoon Park Department of Computer Science Brown University, Providence, RI, USA [email protected] Abstract This paper presents a new

More information

CHAPTER 6 TEXTURE ANIMATION

CHAPTER 6 TEXTURE ANIMATION CHAPTER 6 TEXTURE ANIMATION 6.1. INTRODUCTION Animation is the creating of a timed sequence or series of graphic images or frames together to give the appearance of continuous movement. A collection of

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

An Iterative Image Registration Technique with an Application to Stereo Vision

An Iterative Image Registration Technique with an Application to Stereo Vision An Iterative Image Registration Technique with an Application to Stereo Vision Bruce D. Lucas Takeo Kanade Computer Science Department Carnegie-Mellon University Pittsburgh, Pennsylvania 15213 Abstract

More information

Simultaneous Gamma Correction and Registration in the Frequency Domain

Simultaneous Gamma Correction and Registration in the Frequency Domain Simultaneous Gamma Correction and Registration in the Frequency Domain Alexander Wong [email protected] William Bishop [email protected] Department of Electrical and Computer Engineering University

More information

Algorithm for License Plate Localization and Recognition for Tanzania Car Plate Numbers

Algorithm for License Plate Localization and Recognition for Tanzania Car Plate Numbers Algorithm for License Plate Localization and Recognition for Tanzania Car Plate Numbers Isack Bulugu Department of Electronics Engineering, Tianjin University of Technology and Education, Tianjin, P.R.

More information

How To Fix Out Of Focus And Blur Images With A Dynamic Template Matching Algorithm

How To Fix Out Of Focus And Blur Images With A Dynamic Template Matching Algorithm IJSTE - International Journal of Science Technology & Engineering Volume 1 Issue 10 April 2015 ISSN (online): 2349-784X Image Estimation Algorithm for Out of Focus and Blur Images to Retrieve the Barcode

More information

Optimization of PID parameters with an improved simplex PSO

Optimization of PID parameters with an improved simplex PSO Li et al. Journal of Inequalities and Applications (2015) 2015:325 DOI 10.1186/s13660-015-0785-2 R E S E A R C H Open Access Optimization of PID parameters with an improved simplex PSO Ji-min Li 1, Yeong-Cheng

More information

A Health Degree Evaluation Algorithm for Equipment Based on Fuzzy Sets and the Improved SVM

A Health Degree Evaluation Algorithm for Equipment Based on Fuzzy Sets and the Improved SVM Journal of Computational Information Systems 10: 17 (2014) 7629 7635 Available at http://www.jofcis.com A Health Degree Evaluation Algorithm for Equipment Based on Fuzzy Sets and the Improved SVM Tian

More information

Spatio-Temporal Nonparametric Background Modeling and Subtraction

Spatio-Temporal Nonparametric Background Modeling and Subtraction Spatio-Temporal Nonparametric Background Modeling and Subtraction Raviteja Vemulapalli and R. Aravind Department of Electrical engineering Indian Institute of Technology, Madras Background subtraction

More information

Signature Region of Interest using Auto cropping

Signature Region of Interest using Auto cropping ISSN (Online): 1694-0784 ISSN (Print): 1694-0814 1 Signature Region of Interest using Auto cropping Bassam Al-Mahadeen 1, Mokhled S. AlTarawneh 2 and Islam H. AlTarawneh 2 1 Math. And Computer Department,

More information

Limitations of Human Vision. What is computer vision? What is computer vision (cont d)?

Limitations of Human Vision. What is computer vision? What is computer vision (cont d)? What is computer vision? Limitations of Human Vision Slide 1 Computer vision (image understanding) is a discipline that studies how to reconstruct, interpret and understand a 3D scene from its 2D images

More information

Blog Post Extraction Using Title Finding

Blog Post Extraction Using Title Finding Blog Post Extraction Using Title Finding Linhai Song 1, 2, Xueqi Cheng 1, Yan Guo 1, Bo Wu 1, 2, Yu Wang 1, 2 1 Institute of Computing Technology, Chinese Academy of Sciences, Beijing 2 Graduate School

More information

Hybrid Lossless Compression Method For Binary Images

Hybrid Lossless Compression Method For Binary Images M.F. TALU AND İ. TÜRKOĞLU/ IU-JEEE Vol. 11(2), (2011), 1399-1405 Hybrid Lossless Compression Method For Binary Images M. Fatih TALU, İbrahim TÜRKOĞLU Inonu University, Dept. of Computer Engineering, Engineering

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