SlideShare a Scribd company logo
1 of 5
Download to read offline
IOSR Journal of Engineering (IOSRJEN) www.iosrjen.org
ISSN (e): 2250-3021, ISSN (p): 2278-8719
Vol. 04, Issue 07 (July. 2014), ||V4|| PP 39-43
International organization of Scientific Research 39 | P a g e
Vehicle Detection and Tracking Using Inter-Frame Coding
Vaishali Kalaria,
Assistance Professor, I.T. Department, RK University, Gujarat, India
Abstract: - The moving vehicles detection and tracking is a necessity for collision-free navigation. Motion-
based detection is challenging due to low signal to noise ratio in natural unstructured environments. This paper
aims at real-time analysis to detect and track objects ahead for safety, motion detection, and target tracing. This
paper describes of variation in distances between the camera and the objects in different parts of the scene
(object depth) in surveillance videos. 'Vicinity Factor', is robust to noise and object segmentation. It can applied
to estimate spatial thresholds and object size in different parts of the scene. A comprehensive approach to
localizing target Objects in video under various conditions. I have investigated videos of day and night on
different types of conditions showing that my approach is robust and effective in dealing with changes in
environment and illumination and that real-time processing becomes possible.
Keywords: - Target Tracking, Object depth, spatial threshold.
I. INTRODUCTION
Sensing vehicles ahead and traffic situations during driving are important aspects in safe driving,
accident avoidance, and automatic driving and pursuit. Idesigned a system that is capable of identifying
vehicles ahead, moving in the same direction such as car, by tracking them continuously with an in-car video
camera. The fundamental problem here is to identify vehicles in changing environment and illumination.
Although there have been numerous publications on general object recognition and tracking, or a combination
of them, not many of these techniques could successfully be applied in real time for in-car video. This paper
introduces an effort to design and implement such real-time oriented algorithms and systems that are highly
adaptive to the road and traffic scenes based on domain-specific knowledge on road, vehicle, and control.
The process of automatic tracking begins with the identification of moving objects. I use an improved
background subtraction method in conjunction with a novel yet simple background model to achieve very good
segmentation. Once the moving pixels are identified, it is necessary to cluster these pixels into regions, which I
refer to as blobs, so that pixels belonging to a single object are grouped together. Single moving objects are
often incorrectly separated into two or more sub-regions because of lack of connectivity between pixels, which
usually occurs due to occlusion from other objects (e.g., trees). A blob merging module to merge close-by blobs
is implemented. Having established individual moving objects, the next task in tracking is to achieve
correspondence between the blobs in one frame and those in the next. Since I work with real-time Video, the
algorithm is designed to be robust to real-life tracking issues like occlusion, appearance and disappearance of
objects, and abrupt change in speed, location, and orientation of objects. The robust tracking system has been
satisfactorily tested on various static camera scenes involving both humans and vehicles. I first perform Motion
Segmentation to extract moving blobs in the current frame. Some blobs that are very small and are likely to be
noise are deleted. Due to partial occlusion, some moving objects get incorrectly segmented into two or more
separate blobs. Using color and position information, such blobs are merged. The Object Tracking module
tracks these moving objects over successive frames to generate Object Tracks. Significant improvements are
brought into the basic tracking system by using the velocity of moving objects as an important factor in the
tracking algorithm.
II. MOTION SEGMENTATION
Segmentation using moving average background model
A standard approach for finding moving objects in still-camera video data is to create a model for the
background and compare that model with the frame in question to decide which pixels are likely to be the
foreground (moving objects) and which the background. There are various methods for developing background
models. My approach is to use a simple average model where the average intensity values for each pixel over a
window of N (typically 150) frames is regarded as the background model. The entire background modelling
and segmentation process is carried out on grayscale versions of the images. Fast-moving objects do not
contribute much to the average intensity value. Thus, the model becomes a reasonable estimate of the
background.
Vehicle Detection And Tracking Using Inter-Frame Coding
International organization of Scientific Research 40 | P a g e
The average model is used to identify moving regions and the Secondary Background is used to identify the
valid moving object within these regions. The oval region around the car is the moving region.I can
differentiate between the car region (D) and background regions (C and E) by using the Secondary Background
for regions D (from frame 2), C (from frame 1), and E (from frame 2) in Figure 1.
F
Fig -1 shows illustration of the Secondary Background concept
III. ALGORITHM
Here I mention the algorithm for the vehicle detection.
1. Read the centroid position of each image.
2. Calculate the distance between two centroid images
3. for (present position=initial value: final value) of X resolution
4. for present position=initial value: final value) of Y resolution
5. Calculate change in distance by
Distance= p(X2: X1)2 + (Y2: Y1)2
Where X1=previous pixel position and X2=present pixel position in width Y1=previous pixel position and
Y2=present pixel position in height .Store all the distance values in an Array.
The distance dab between two normalized color histograms Ha and Hb with N bins are calculated by using the
L1 metric as follows:
  
n
i
iHbiHaDab )()(
ogramDlowerhistogramDupperhistDtotal 
]........1[],*[][ Ci
C
N
iDSiDS 

 n
iDS
iDS
iDS
1
][
][
][
Where, ][iDS is normalized to have integral unit area.
6. dataregionprops(L2,BW,{'Centroid','BoundingBox','ConvexHull','Area'});
7. rectangle('Position',cardata(3).BoundingBox,'EdgeColor','g','LineWidth',2)
Tracking is essentially a correspondence task, the goal of which is to find a match for each blob or
object in the previous frame to one of the blobs or objects in the current frame. The tracking algorithm is based
on the match matrix values and the track assignments were made by looking for the blob which was nearest (in
Euclidean distance) to the track.
Since the video shows high amount of noise, occlusion, and sudden appearance and disappearance of
objects, a probabilistic track assignment algorithm can lead to better inference about the object behaviour in
higher-level intelligence applications. For example, if two tracks have converged into a single blob in a
particular frame, a matrix of probabilities of track-to-blob associations would be able to offer a better numerical
representation of the situation making it easier to infer the 'merge' event. Similarly, if an object is occluded or
leaves the scene, a probabilistic approach can give the probability that the track is 'lost'. The distance-based
approach that I described earlier cannot be extended to find the probability that a track has been 'lost'.
)()()( xTxBxII  
Where )(xT an adaptive threshold value is estimated using the image sequence I0 through  xI 1 . The
Equation is used to generate the foreground pixel map which represents the foreground regions as a binary
array where a 1 corresponds to a foreground pixel and a 0 stands for a backgroundpixel.
Bayesian inference method is used to find matching blobs in consecutive frames to facilitate track
correspondence. I also calculate the probability that a track is 'lost' in the current frame. The basic idea behind
the approach is that given a track in the previous frame, there is some probability that a blob of similar color
and position will be observed in the current frame. Conversely, using the Bayes formula, given the current
Vehicle Detection And Tracking Using Inter-Frame Coding
International organization of Scientific Research 41 | P a g e
blob's color and position observations, I can find the probability of the current blob being associated with a
track from the previous frame.
Fig -2 if a blob is seen in current frame, Bayes' formula may be used to associate it with a track from previous
frame.
IV. EXPERIMENTAL RESULTS
Fig -3 Real-Time Video’s Frame
Fig -4 Vehicle Detection and Tracking Demo
Vehicle Detection And Tracking Using Inter-Frame Coding
International organization of Scientific Research 42 | P a g e
Fig -5 Vehicle tracking using Motion Estimation
Vector Median Factor has been implemented, the tables of section are presented again with the
addition of a row for results after the use of the Vicinity Factor. Table shows errors that result in the
segmentation when blob merging is not used along with errors that result from the use of blob merging with
various thresholds and blob merging with Vicinity Factor.
Percentage Errors (against number of car instances) in segmentation and
merging
[Frames] (Number of
instances of cars)
Sequenc
e
e 1
Sequenc
e
e 2
Sequenc
e
e 3
Total
1 +
2 +3
No Blob
merging
20:7 9:1 24:0 17:9
Blob merging (threshold =
10)
19.8 9:1 19:0 16:0
Blob merging (threshold =
15)
23:3 3.6 15.7 14:2
Blob merging (threshold =
20)
29:3 3.6 16:5 16. 5
Blob merging (Vicinity
Factor)
19.8 3.6 16:5 13. 3
Table -1shows errors as a percentage of number of car instances in the sub sequences.
V. CONCLUSION
This paper has focused on an important task to detect and track vehicles ahead with video camera. My
approach is mainly based on motion information. Several general features that characterize the vehicles ahead
are robustly extracted in the video. Automatic tracking is a very interesting research area that can lead to
numerous intelligent applications. My work focused on setting up a system that may be used for intelligent
applications in video surveillance of outdoor traffic scenarios. Outdoor videos are more challenging than indoor
videos because of illumination changes, non-static backgrounds, and occlusion. The high amount of noise and
uncertainty observed in outdoor sequences makes tracking in these sequences a difficult problem to solve. This
a tracking system that is able to detect and track moving objects in outdoor video.
REFERENCES
[1] Luigi Di Stefano, Enrico Viarani,"Vehicle Detection and Tracking Using the Block Matching
Algorithm",in IEEE- 2013
[2] M. Betke and H. Nguyen, ―Highway scene analysis from a moving vehicle under deduced visibility
conditions,‖ in Proc. IEEE Intell. Vehicle, 2012, pp. 131–136. [3] J. Chu, L. Ji, L. Guo, B. Li, and R.
Wang, ―Study on method of detecting preceding vehicle based on monocular camera,‖ in Proc. IEEE
Intellectual. Vehicle, 2012, pp. 750–755. [4] D. Alonso, L. Salgado, and M. Nieto, ―Robust vehicle
detection through multidimensional classification for on board video based systems,‖ in Proc. IEEE
ICIP, Sep. 2011, vol. 4, pp. 321–324.
[3] P. Parodi and G. Piccioli, ―A feature-based recognition scheme for traffic scenes,‖ in Proc. IEEE
Intellectual. Vehicle, 2010, pp. 229–234.
[4] L. Gao, C. Li, T. Fang, and Z. Xiong, ―Vehicle detection based on color and edge information,‖ in Proc.
Image Anal. Recognition. vol. 5112, Lect. Notes Computer Science, 2010, pp. 142– 150.
Vehicle Detection And Tracking Using Inter-Frame Coding
International organization of Scientific Research 43 | P a g e
[5] C. R. Wang and J.-J. Lien, ―Automatic vehicle detection using local features—A statistical approach,‖
IEEE Trans. Intell. Transp. Syst., vol. 9, no. 1, pp. 83–96, Mar. 2010.
[6] W. Zhang, X. Z. Fang, and X. K. Yang, ―Moving vehicles segmentation based on Bayesian framework
for Gaussian motion model,‖ Pattern Recognit. Lett., vol. 27, no. 9, pp. 956–967, Jul. 2009.
[7] C. Demonceaus, A. Potelle, and D. Kachi-Akkouche, ―Obstacle detection in a road scene based on
motion analysis,‖ IEEE Transport. Vehicle. Technol., vol. 53, no. 6, pp. 1649–1656, Nov. 2008.
[8] S. Sivaraman and M. Trivedi, ―A general active-learning framework for on-road vehicle recognition and
tracking,‖ IEEE Trans. Intellectual. Transport. Syststem., vol. 11, no. 2, pp. 267–276, Jun. 2008.
[9] N. Ghosh and B. Bhanu, ―Incremental unsupervised three-dimensional vehicle model learning from
video,‖ IEEE Trans. Intellectual. Transp. Syst., vol. 11, no. 2, pp. 423–440, Jun. 2006.
BIOGRAPHIES
Vaishali Kalaria received M.E degree in Computer Engineering, Assistant Professor with Department of
Computer Engineering, RK University. My research interests includes with Image Processing, pattern
reorganization, computer Graphics.

More Related Content

What's hot

Real-time Object Tracking
Real-time Object TrackingReal-time Object Tracking
Real-time Object TrackingWonsang You
 
Object Detection & Tracking
Object Detection & TrackingObject Detection & Tracking
Object Detection & TrackingAkshay Gujarathi
 
Object detection technique using bounding box algorithm for
Object detection technique using bounding box algorithm forObject detection technique using bounding box algorithm for
Object detection technique using bounding box algorithm forVESIT,Chembur,Mumbai
 
K-Means Clustering in Moving Objects Extraction with Selective Background
K-Means Clustering in Moving Objects Extraction with Selective BackgroundK-Means Clustering in Moving Objects Extraction with Selective Background
K-Means Clustering in Moving Objects Extraction with Selective BackgroundIJCSIS Research Publications
 
Multiple Person Tracking with Shadow Removal Using Adaptive Gaussian Mixture ...
Multiple Person Tracking with Shadow Removal Using Adaptive Gaussian Mixture ...Multiple Person Tracking with Shadow Removal Using Adaptive Gaussian Mixture ...
Multiple Person Tracking with Shadow Removal Using Adaptive Gaussian Mixture ...IJSRD
 
Detection and Tracking of Moving Object: A Survey
Detection and Tracking of Moving Object: A SurveyDetection and Tracking of Moving Object: A Survey
Detection and Tracking of Moving Object: A SurveyIJERA Editor
 
An enhanced fireworks algorithm to generate prime key for multiple users in f...
An enhanced fireworks algorithm to generate prime key for multiple users in f...An enhanced fireworks algorithm to generate prime key for multiple users in f...
An enhanced fireworks algorithm to generate prime key for multiple users in f...journalBEEI
 
Overview Of Video Object Tracking System
Overview Of Video Object Tracking SystemOverview Of Video Object Tracking System
Overview Of Video Object Tracking SystemEditor IJMTER
 
Object tracking a survey
Object tracking a surveyObject tracking a survey
Object tracking a surveyHaseeb Hassan
 
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCE
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCEHUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCE
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCEAswinraj Manickam
 
A New Algorithm for Tracking Objects in Videos of Cluttered Scenes
A New Algorithm for Tracking Objects in Videos of Cluttered ScenesA New Algorithm for Tracking Objects in Videos of Cluttered Scenes
A New Algorithm for Tracking Objects in Videos of Cluttered ScenesZac Darcy
 
motion and feature based person tracking in survillance videos
motion and feature based person tracking in survillance videosmotion and feature based person tracking in survillance videos
motion and feature based person tracking in survillance videosshiva kumar cheruku
 
Visual Object Tracking: review
Visual Object Tracking: reviewVisual Object Tracking: review
Visual Object Tracking: reviewDmytro Mishkin
 
Unsupervised semi-supervised object detection
Unsupervised semi-supervised object detectionUnsupervised semi-supervised object detection
Unsupervised semi-supervised object detectionYu Huang
 
Moving object detection in video surveillance
Moving object detection in video surveillanceMoving object detection in video surveillance
Moving object detection in video surveillanceAshfaqul Haque John
 
Object tracking survey
Object tracking surveyObject tracking survey
Object tracking surveyRich Nguyen
 

What's hot (20)

Real-time Object Tracking
Real-time Object TrackingReal-time Object Tracking
Real-time Object Tracking
 
Object Detection & Tracking
Object Detection & TrackingObject Detection & Tracking
Object Detection & Tracking
 
Presentation of Visual Tracking
Presentation of Visual TrackingPresentation of Visual Tracking
Presentation of Visual Tracking
 
Object detection technique using bounding box algorithm for
Object detection technique using bounding box algorithm forObject detection technique using bounding box algorithm for
Object detection technique using bounding box algorithm for
 
K-Means Clustering in Moving Objects Extraction with Selective Background
K-Means Clustering in Moving Objects Extraction with Selective BackgroundK-Means Clustering in Moving Objects Extraction with Selective Background
K-Means Clustering in Moving Objects Extraction with Selective Background
 
Multiple Person Tracking with Shadow Removal Using Adaptive Gaussian Mixture ...
Multiple Person Tracking with Shadow Removal Using Adaptive Gaussian Mixture ...Multiple Person Tracking with Shadow Removal Using Adaptive Gaussian Mixture ...
Multiple Person Tracking with Shadow Removal Using Adaptive Gaussian Mixture ...
 
Detection and Tracking of Moving Object: A Survey
Detection and Tracking of Moving Object: A SurveyDetection and Tracking of Moving Object: A Survey
Detection and Tracking of Moving Object: A Survey
 
I0343065072
I0343065072I0343065072
I0343065072
 
An enhanced fireworks algorithm to generate prime key for multiple users in f...
An enhanced fireworks algorithm to generate prime key for multiple users in f...An enhanced fireworks algorithm to generate prime key for multiple users in f...
An enhanced fireworks algorithm to generate prime key for multiple users in f...
 
Overview Of Video Object Tracking System
Overview Of Video Object Tracking SystemOverview Of Video Object Tracking System
Overview Of Video Object Tracking System
 
Object tracking a survey
Object tracking a surveyObject tracking a survey
Object tracking a survey
 
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCE
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCEHUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCE
HUMAN MOTION DETECTION AND TRACKING FOR VIDEO SURVEILLANCE
 
A New Algorithm for Tracking Objects in Videos of Cluttered Scenes
A New Algorithm for Tracking Objects in Videos of Cluttered ScenesA New Algorithm for Tracking Objects in Videos of Cluttered Scenes
A New Algorithm for Tracking Objects in Videos of Cluttered Scenes
 
motion and feature based person tracking in survillance videos
motion and feature based person tracking in survillance videosmotion and feature based person tracking in survillance videos
motion and feature based person tracking in survillance videos
 
Object tracking
Object trackingObject tracking
Object tracking
 
Visual Object Tracking: review
Visual Object Tracking: reviewVisual Object Tracking: review
Visual Object Tracking: review
 
Unsupervised semi-supervised object detection
Unsupervised semi-supervised object detectionUnsupervised semi-supervised object detection
Unsupervised semi-supervised object detection
 
Moving object detection in video surveillance
Moving object detection in video surveillanceMoving object detection in video surveillance
Moving object detection in video surveillance
 
Object tracking survey
Object tracking surveyObject tracking survey
Object tracking survey
 
Background subtraction
Background subtractionBackground subtraction
Background subtraction
 

Viewers also liked

ramya_Motion_Detection
ramya_Motion_Detectionramya_Motion_Detection
ramya_Motion_Detectionramya1591
 
Paper id 25201468
Paper id 25201468Paper id 25201468
Paper id 25201468IJRAT
 
Badripatro dissertation 09307903
Badripatro dissertation 09307903Badripatro dissertation 09307903
Badripatro dissertation 09307903patrobadri
 
guide de l'Orientation universitaire 2016
guide de l'Orientation universitaire 2016guide de l'Orientation universitaire 2016
guide de l'Orientation universitaire 2016Ami aj
 
Object Detection and tracking in Video Sequences
Object Detection and tracking in Video SequencesObject Detection and tracking in Video Sequences
Object Detection and tracking in Video SequencesIDES Editor
 
Laboratory Prototype Documentation 1
Laboratory Prototype Documentation 1Laboratory Prototype Documentation 1
Laboratory Prototype Documentation 1Vadim Artishuk
 
Textile testing
Textile testingTextile testing
Textile testingEr Rangari
 
Social Networking Project (website) full documentation
Social Networking Project (website) full documentation Social Networking Project (website) full documentation
Social Networking Project (website) full documentation Tenzin Tendar
 

Viewers also liked (13)

ramya_Motion_Detection
ramya_Motion_Detectionramya_Motion_Detection
ramya_Motion_Detection
 
Moving object detection1
Moving object detection1Moving object detection1
Moving object detection1
 
D018112429
D018112429D018112429
D018112429
 
Paper id 25201468
Paper id 25201468Paper id 25201468
Paper id 25201468
 
MOVING OBJECT DETECTION CODE
MOVING OBJECT DETECTION CODEMOVING OBJECT DETECTION CODE
MOVING OBJECT DETECTION CODE
 
Badripatro dissertation 09307903
Badripatro dissertation 09307903Badripatro dissertation 09307903
Badripatro dissertation 09307903
 
Thesis section...CNS granuloma
Thesis section...CNS granulomaThesis section...CNS granuloma
Thesis section...CNS granuloma
 
guide de l'Orientation universitaire 2016
guide de l'Orientation universitaire 2016guide de l'Orientation universitaire 2016
guide de l'Orientation universitaire 2016
 
Object Detection and tracking in Video Sequences
Object Detection and tracking in Video SequencesObject Detection and tracking in Video Sequences
Object Detection and tracking in Video Sequences
 
Background Subtraction Algorithm for Moving Object Detection Using Denoising ...
Background Subtraction Algorithm for Moving Object Detection Using Denoising ...Background Subtraction Algorithm for Moving Object Detection Using Denoising ...
Background Subtraction Algorithm for Moving Object Detection Using Denoising ...
 
Laboratory Prototype Documentation 1
Laboratory Prototype Documentation 1Laboratory Prototype Documentation 1
Laboratory Prototype Documentation 1
 
Textile testing
Textile testingTextile testing
Textile testing
 
Social Networking Project (website) full documentation
Social Networking Project (website) full documentation Social Networking Project (website) full documentation
Social Networking Project (website) full documentation
 

Similar to G04743943

Vehicle Tracking Using Kalman Filter and Features
Vehicle Tracking Using Kalman Filter and FeaturesVehicle Tracking Using Kalman Filter and Features
Vehicle Tracking Using Kalman Filter and Featuressipij
 
Motion Object Detection Using BGS Technique
Motion Object Detection Using BGS TechniqueMotion Object Detection Using BGS Technique
Motion Object Detection Using BGS TechniqueMangaiK4
 
Motion Object Detection Using BGS Technique
Motion Object Detection Using BGS TechniqueMotion Object Detection Using BGS Technique
Motion Object Detection Using BGS TechniqueMangaiK4
 
Vehicle Recognition Using VIBE and SVM
Vehicle Recognition Using VIBE and SVMVehicle Recognition Using VIBE and SVM
Vehicle Recognition Using VIBE and SVMCSEIJJournal
 
VEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVMVEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVMcseij
 
VEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVMVEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVMcseij
 
VEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVM VEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVM cseij
 
Survey on video object detection & tracking
Survey on video object detection & trackingSurvey on video object detection & tracking
Survey on video object detection & trackingijctet
 
Shadow Detection and Removal in Still Images by using Hue Properties of Color...
Shadow Detection and Removal in Still Images by using Hue Properties of Color...Shadow Detection and Removal in Still Images by using Hue Properties of Color...
Shadow Detection and Removal in Still Images by using Hue Properties of Color...ijsrd.com
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Real-time Moving Object Detection using SURF
Real-time Moving Object Detection using SURFReal-time Moving Object Detection using SURF
Real-time Moving Object Detection using SURFiosrjce
 
Automated traffic sign board
Automated traffic sign boardAutomated traffic sign board
Automated traffic sign boardijcsa
 
Implementation of Object Tracking for Real Time Video
Implementation of Object Tracking for Real Time VideoImplementation of Object Tracking for Real Time Video
Implementation of Object Tracking for Real Time VideoIDES Editor
 
Integrated Hidden Markov Model and Kalman Filter for Online Object Tracking
Integrated Hidden Markov Model and Kalman Filter for Online Object TrackingIntegrated Hidden Markov Model and Kalman Filter for Online Object Tracking
Integrated Hidden Markov Model and Kalman Filter for Online Object Trackingijsrd.com
 
A Survey on Approaches for Object Tracking
A Survey on Approaches for Object TrackingA Survey on Approaches for Object Tracking
A Survey on Approaches for Object Trackingjournal ijrtem
 
IRJET - Direct Me-Nevigation for Blind People
IRJET -  	  Direct Me-Nevigation for Blind PeopleIRJET -  	  Direct Me-Nevigation for Blind People
IRJET - Direct Me-Nevigation for Blind PeopleIRJET Journal
 

Similar to G04743943 (20)

Vehicle Tracking Using Kalman Filter and Features
Vehicle Tracking Using Kalman Filter and FeaturesVehicle Tracking Using Kalman Filter and Features
Vehicle Tracking Using Kalman Filter and Features
 
Motion Object Detection Using BGS Technique
Motion Object Detection Using BGS TechniqueMotion Object Detection Using BGS Technique
Motion Object Detection Using BGS Technique
 
Motion Object Detection Using BGS Technique
Motion Object Detection Using BGS TechniqueMotion Object Detection Using BGS Technique
Motion Object Detection Using BGS Technique
 
L0816166
L0816166L0816166
L0816166
 
Vehicle Recognition Using VIBE and SVM
Vehicle Recognition Using VIBE and SVMVehicle Recognition Using VIBE and SVM
Vehicle Recognition Using VIBE and SVM
 
VEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVMVEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVM
 
VEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVMVEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVM
 
VEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVM VEHICLE RECOGNITION USING VIBE AND SVM
VEHICLE RECOGNITION USING VIBE AND SVM
 
Survey on video object detection & tracking
Survey on video object detection & trackingSurvey on video object detection & tracking
Survey on video object detection & tracking
 
Shadow Detection and Removal in Still Images by using Hue Properties of Color...
Shadow Detection and Removal in Still Images by using Hue Properties of Color...Shadow Detection and Removal in Still Images by using Hue Properties of Color...
Shadow Detection and Removal in Still Images by using Hue Properties of Color...
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
J017377578
J017377578J017377578
J017377578
 
Real-time Moving Object Detection using SURF
Real-time Moving Object Detection using SURFReal-time Moving Object Detection using SURF
Real-time Moving Object Detection using SURF
 
Motion Human Detection & Tracking Based On Background Subtraction
Motion Human Detection & Tracking Based On Background SubtractionMotion Human Detection & Tracking Based On Background Subtraction
Motion Human Detection & Tracking Based On Background Subtraction
 
Automated traffic sign board
Automated traffic sign boardAutomated traffic sign board
Automated traffic sign board
 
Implementation of Object Tracking for Real Time Video
Implementation of Object Tracking for Real Time VideoImplementation of Object Tracking for Real Time Video
Implementation of Object Tracking for Real Time Video
 
Integrated Hidden Markov Model and Kalman Filter for Online Object Tracking
Integrated Hidden Markov Model and Kalman Filter for Online Object TrackingIntegrated Hidden Markov Model and Kalman Filter for Online Object Tracking
Integrated Hidden Markov Model and Kalman Filter for Online Object Tracking
 
A Survey on Approaches for Object Tracking
A Survey on Approaches for Object TrackingA Survey on Approaches for Object Tracking
A Survey on Approaches for Object Tracking
 
IRJET - Direct Me-Nevigation for Blind People
IRJET -  	  Direct Me-Nevigation for Blind PeopleIRJET -  	  Direct Me-Nevigation for Blind People
IRJET - Direct Me-Nevigation for Blind People
 
H017324449
H017324449H017324449
H017324449
 

More from IOSR-JEN

More from IOSR-JEN (20)

C05921721
C05921721C05921721
C05921721
 
B05921016
B05921016B05921016
B05921016
 
A05920109
A05920109A05920109
A05920109
 
J05915457
J05915457J05915457
J05915457
 
I05914153
I05914153I05914153
I05914153
 
H05913540
H05913540H05913540
H05913540
 
G05913234
G05913234G05913234
G05913234
 
F05912731
F05912731F05912731
F05912731
 
E05912226
E05912226E05912226
E05912226
 
D05911621
D05911621D05911621
D05911621
 
C05911315
C05911315C05911315
C05911315
 
B05910712
B05910712B05910712
B05910712
 
A05910106
A05910106A05910106
A05910106
 
B05840510
B05840510B05840510
B05840510
 
I05844759
I05844759I05844759
I05844759
 
H05844346
H05844346H05844346
H05844346
 
G05843942
G05843942G05843942
G05843942
 
F05843238
F05843238F05843238
F05843238
 
E05842831
E05842831E05842831
E05842831
 
D05842227
D05842227D05842227
D05842227
 

Recently uploaded

TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)Samir Dash
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Design and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data ScienceDesign and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data SciencePaolo Missier
 
Quantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation ComputingQuantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation ComputingWSO2
 
Simplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxSimplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxMarkSteadman7
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAnitaRaj43
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
JavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate GuideJavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate GuidePixlogix Infotech
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
ChatGPT and Beyond - Elevating DevOps Productivity
ChatGPT and Beyond - Elevating DevOps ProductivityChatGPT and Beyond - Elevating DevOps Productivity
ChatGPT and Beyond - Elevating DevOps ProductivityVictorSzoltysek
 
How to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cfHow to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cfdanishmna97
 
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....rightmanforbloodline
 

Recently uploaded (20)

TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Design and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data ScienceDesign and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data Science
 
Quantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation ComputingQuantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation Computing
 
Simplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxSimplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptx
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by Anitaraj
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
JavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate GuideJavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate Guide
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
ChatGPT and Beyond - Elevating DevOps Productivity
ChatGPT and Beyond - Elevating DevOps ProductivityChatGPT and Beyond - Elevating DevOps Productivity
ChatGPT and Beyond - Elevating DevOps Productivity
 
How to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cfHow to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cf
 
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
 

G04743943

  • 1. IOSR Journal of Engineering (IOSRJEN) www.iosrjen.org ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 04, Issue 07 (July. 2014), ||V4|| PP 39-43 International organization of Scientific Research 39 | P a g e Vehicle Detection and Tracking Using Inter-Frame Coding Vaishali Kalaria, Assistance Professor, I.T. Department, RK University, Gujarat, India Abstract: - The moving vehicles detection and tracking is a necessity for collision-free navigation. Motion- based detection is challenging due to low signal to noise ratio in natural unstructured environments. This paper aims at real-time analysis to detect and track objects ahead for safety, motion detection, and target tracing. This paper describes of variation in distances between the camera and the objects in different parts of the scene (object depth) in surveillance videos. 'Vicinity Factor', is robust to noise and object segmentation. It can applied to estimate spatial thresholds and object size in different parts of the scene. A comprehensive approach to localizing target Objects in video under various conditions. I have investigated videos of day and night on different types of conditions showing that my approach is robust and effective in dealing with changes in environment and illumination and that real-time processing becomes possible. Keywords: - Target Tracking, Object depth, spatial threshold. I. INTRODUCTION Sensing vehicles ahead and traffic situations during driving are important aspects in safe driving, accident avoidance, and automatic driving and pursuit. Idesigned a system that is capable of identifying vehicles ahead, moving in the same direction such as car, by tracking them continuously with an in-car video camera. The fundamental problem here is to identify vehicles in changing environment and illumination. Although there have been numerous publications on general object recognition and tracking, or a combination of them, not many of these techniques could successfully be applied in real time for in-car video. This paper introduces an effort to design and implement such real-time oriented algorithms and systems that are highly adaptive to the road and traffic scenes based on domain-specific knowledge on road, vehicle, and control. The process of automatic tracking begins with the identification of moving objects. I use an improved background subtraction method in conjunction with a novel yet simple background model to achieve very good segmentation. Once the moving pixels are identified, it is necessary to cluster these pixels into regions, which I refer to as blobs, so that pixels belonging to a single object are grouped together. Single moving objects are often incorrectly separated into two or more sub-regions because of lack of connectivity between pixels, which usually occurs due to occlusion from other objects (e.g., trees). A blob merging module to merge close-by blobs is implemented. Having established individual moving objects, the next task in tracking is to achieve correspondence between the blobs in one frame and those in the next. Since I work with real-time Video, the algorithm is designed to be robust to real-life tracking issues like occlusion, appearance and disappearance of objects, and abrupt change in speed, location, and orientation of objects. The robust tracking system has been satisfactorily tested on various static camera scenes involving both humans and vehicles. I first perform Motion Segmentation to extract moving blobs in the current frame. Some blobs that are very small and are likely to be noise are deleted. Due to partial occlusion, some moving objects get incorrectly segmented into two or more separate blobs. Using color and position information, such blobs are merged. The Object Tracking module tracks these moving objects over successive frames to generate Object Tracks. Significant improvements are brought into the basic tracking system by using the velocity of moving objects as an important factor in the tracking algorithm. II. MOTION SEGMENTATION Segmentation using moving average background model A standard approach for finding moving objects in still-camera video data is to create a model for the background and compare that model with the frame in question to decide which pixels are likely to be the foreground (moving objects) and which the background. There are various methods for developing background models. My approach is to use a simple average model where the average intensity values for each pixel over a window of N (typically 150) frames is regarded as the background model. The entire background modelling and segmentation process is carried out on grayscale versions of the images. Fast-moving objects do not contribute much to the average intensity value. Thus, the model becomes a reasonable estimate of the background.
  • 2. Vehicle Detection And Tracking Using Inter-Frame Coding International organization of Scientific Research 40 | P a g e The average model is used to identify moving regions and the Secondary Background is used to identify the valid moving object within these regions. The oval region around the car is the moving region.I can differentiate between the car region (D) and background regions (C and E) by using the Secondary Background for regions D (from frame 2), C (from frame 1), and E (from frame 2) in Figure 1. F Fig -1 shows illustration of the Secondary Background concept III. ALGORITHM Here I mention the algorithm for the vehicle detection. 1. Read the centroid position of each image. 2. Calculate the distance between two centroid images 3. for (present position=initial value: final value) of X resolution 4. for present position=initial value: final value) of Y resolution 5. Calculate change in distance by Distance= p(X2: X1)2 + (Y2: Y1)2 Where X1=previous pixel position and X2=present pixel position in width Y1=previous pixel position and Y2=present pixel position in height .Store all the distance values in an Array. The distance dab between two normalized color histograms Ha and Hb with N bins are calculated by using the L1 metric as follows:    n i iHbiHaDab )()( ogramDlowerhistogramDupperhistDtotal  ]........1[],*[][ Ci C N iDSiDS    n iDS iDS iDS 1 ][ ][ ][ Where, ][iDS is normalized to have integral unit area. 6. dataregionprops(L2,BW,{'Centroid','BoundingBox','ConvexHull','Area'}); 7. rectangle('Position',cardata(3).BoundingBox,'EdgeColor','g','LineWidth',2) Tracking is essentially a correspondence task, the goal of which is to find a match for each blob or object in the previous frame to one of the blobs or objects in the current frame. The tracking algorithm is based on the match matrix values and the track assignments were made by looking for the blob which was nearest (in Euclidean distance) to the track. Since the video shows high amount of noise, occlusion, and sudden appearance and disappearance of objects, a probabilistic track assignment algorithm can lead to better inference about the object behaviour in higher-level intelligence applications. For example, if two tracks have converged into a single blob in a particular frame, a matrix of probabilities of track-to-blob associations would be able to offer a better numerical representation of the situation making it easier to infer the 'merge' event. Similarly, if an object is occluded or leaves the scene, a probabilistic approach can give the probability that the track is 'lost'. The distance-based approach that I described earlier cannot be extended to find the probability that a track has been 'lost'. )()()( xTxBxII   Where )(xT an adaptive threshold value is estimated using the image sequence I0 through  xI 1 . The Equation is used to generate the foreground pixel map which represents the foreground regions as a binary array where a 1 corresponds to a foreground pixel and a 0 stands for a backgroundpixel. Bayesian inference method is used to find matching blobs in consecutive frames to facilitate track correspondence. I also calculate the probability that a track is 'lost' in the current frame. The basic idea behind the approach is that given a track in the previous frame, there is some probability that a blob of similar color and position will be observed in the current frame. Conversely, using the Bayes formula, given the current
  • 3. Vehicle Detection And Tracking Using Inter-Frame Coding International organization of Scientific Research 41 | P a g e blob's color and position observations, I can find the probability of the current blob being associated with a track from the previous frame. Fig -2 if a blob is seen in current frame, Bayes' formula may be used to associate it with a track from previous frame. IV. EXPERIMENTAL RESULTS Fig -3 Real-Time Video’s Frame Fig -4 Vehicle Detection and Tracking Demo
  • 4. Vehicle Detection And Tracking Using Inter-Frame Coding International organization of Scientific Research 42 | P a g e Fig -5 Vehicle tracking using Motion Estimation Vector Median Factor has been implemented, the tables of section are presented again with the addition of a row for results after the use of the Vicinity Factor. Table shows errors that result in the segmentation when blob merging is not used along with errors that result from the use of blob merging with various thresholds and blob merging with Vicinity Factor. Percentage Errors (against number of car instances) in segmentation and merging [Frames] (Number of instances of cars) Sequenc e e 1 Sequenc e e 2 Sequenc e e 3 Total 1 + 2 +3 No Blob merging 20:7 9:1 24:0 17:9 Blob merging (threshold = 10) 19.8 9:1 19:0 16:0 Blob merging (threshold = 15) 23:3 3.6 15.7 14:2 Blob merging (threshold = 20) 29:3 3.6 16:5 16. 5 Blob merging (Vicinity Factor) 19.8 3.6 16:5 13. 3 Table -1shows errors as a percentage of number of car instances in the sub sequences. V. CONCLUSION This paper has focused on an important task to detect and track vehicles ahead with video camera. My approach is mainly based on motion information. Several general features that characterize the vehicles ahead are robustly extracted in the video. Automatic tracking is a very interesting research area that can lead to numerous intelligent applications. My work focused on setting up a system that may be used for intelligent applications in video surveillance of outdoor traffic scenarios. Outdoor videos are more challenging than indoor videos because of illumination changes, non-static backgrounds, and occlusion. The high amount of noise and uncertainty observed in outdoor sequences makes tracking in these sequences a difficult problem to solve. This a tracking system that is able to detect and track moving objects in outdoor video. REFERENCES [1] Luigi Di Stefano, Enrico Viarani,"Vehicle Detection and Tracking Using the Block Matching Algorithm",in IEEE- 2013 [2] M. Betke and H. Nguyen, ―Highway scene analysis from a moving vehicle under deduced visibility conditions,‖ in Proc. IEEE Intell. Vehicle, 2012, pp. 131–136. [3] J. Chu, L. Ji, L. Guo, B. Li, and R. Wang, ―Study on method of detecting preceding vehicle based on monocular camera,‖ in Proc. IEEE Intellectual. Vehicle, 2012, pp. 750–755. [4] D. Alonso, L. Salgado, and M. Nieto, ―Robust vehicle detection through multidimensional classification for on board video based systems,‖ in Proc. IEEE ICIP, Sep. 2011, vol. 4, pp. 321–324. [3] P. Parodi and G. Piccioli, ―A feature-based recognition scheme for traffic scenes,‖ in Proc. IEEE Intellectual. Vehicle, 2010, pp. 229–234. [4] L. Gao, C. Li, T. Fang, and Z. Xiong, ―Vehicle detection based on color and edge information,‖ in Proc. Image Anal. Recognition. vol. 5112, Lect. Notes Computer Science, 2010, pp. 142– 150.
  • 5. Vehicle Detection And Tracking Using Inter-Frame Coding International organization of Scientific Research 43 | P a g e [5] C. R. Wang and J.-J. Lien, ―Automatic vehicle detection using local features—A statistical approach,‖ IEEE Trans. Intell. Transp. Syst., vol. 9, no. 1, pp. 83–96, Mar. 2010. [6] W. Zhang, X. Z. Fang, and X. K. Yang, ―Moving vehicles segmentation based on Bayesian framework for Gaussian motion model,‖ Pattern Recognit. Lett., vol. 27, no. 9, pp. 956–967, Jul. 2009. [7] C. Demonceaus, A. Potelle, and D. Kachi-Akkouche, ―Obstacle detection in a road scene based on motion analysis,‖ IEEE Transport. Vehicle. Technol., vol. 53, no. 6, pp. 1649–1656, Nov. 2008. [8] S. Sivaraman and M. Trivedi, ―A general active-learning framework for on-road vehicle recognition and tracking,‖ IEEE Trans. Intellectual. Transport. Syststem., vol. 11, no. 2, pp. 267–276, Jun. 2008. [9] N. Ghosh and B. Bhanu, ―Incremental unsupervised three-dimensional vehicle model learning from video,‖ IEEE Trans. Intellectual. Transp. Syst., vol. 11, no. 2, pp. 423–440, Jun. 2006. BIOGRAPHIES Vaishali Kalaria received M.E degree in Computer Engineering, Assistant Professor with Department of Computer Engineering, RK University. My research interests includes with Image Processing, pattern reorganization, computer Graphics.