SlideShare una empresa de Scribd logo
1 de 6
Descargar para leer sin conexión
Journal of Information Engineering and Applications                                            www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011

 Study Of Statistical Models For Route Prediction Algorithms
                         In VANET
                                     Uma Nagaraj*,Nivedita N.Kadam
                         Dept. of Computer Engg. M.A.E , Alandi (D), Pune, India.
                                        Umanagaraj67@gmail.com

Abstract
          Vehicle-to-vehicle communication is a concept greatly studied during the past years. Vehicles
equipped with devices capable of short-range wireless connectivity can form a particular mobile ad-hoc
network, called a “Vehicular Ad-hoc NETwork” (or VANET). The users of a VANET, drivers or
passengers, can be provided with useful information and with a wide range of interesting services. Route
prediction is the missing piece in several proposed ideas for intelligent vehicles. In this paper, we are
studying the algorithms that predict a vehicle’s entire route as it is driven. Such predictions are useful for
giving the driver warnings about upcoming traffic hazards or information about upcoming points of
interest, including advertising. This paper describes the route Prediction algorithms using Markov Model,
Hidden Markov Model (HMM), Variable order Markov model (VMM).
Keywords- VANET, MANET, ITs, GPS, HMM, VMM, PST.


1. Introduction
          The increasing demand of wireless communication and the needs of new wireless devices have
tend to research on self organizing, self healing networks without the interference of centralized or pre-
established infrastructure/authority. The networks with the absence of any centralized or pre-established
infrastructure are called Ad hoc networks. Ad hoc Networks are collection of self-governing mobile nodes.
         Vehicular Ad hoc Networks (VANET) is the subclass of Mobile Ad Hoc Networks (MANETs).
VANET is one of the influencing areas for the improvement of Intelligent Transportation System (ITS) in
order to provide safety and comfort to the road users. VANET assists vehicle drivers to communicate and
to coordinate among themselves in order to avoid any critical situation through Vehicle to Vehicle
communication e.g. road side accidents, traffic jams, speed control, free passage of emergency vehicles and
unseen obstacles etc. Besides safety applications VANET also provide comfort applications to the road
users. For example, weather information, mobile e-commerce, internet access and other multimedia
applications. The most well known applications include, “Advance Driver Assistance Systems (ADASE2)
(Heddebaut 2005), Crash Avoidance Matrices Partnership (CAMP) (Shulman 2005), CARTALK2000
(Andreone 2005) and Fleet Net” (Kruger 2005) that were developed under collaboration of various
governments and major car manufacturers. Figure 1 shows the overall working structure of VANET.


2. Need of Route Prediction in VANET
 Accurate travel route prediction in urban vehicular environments, however, is very challenging due to the
 following three reasons (Guangtao 2009).
     1. The structure of the urban road networks is very complicated. For example, in a city environment
        there are about 1000 intersections connecting about 25000 surface road segments in addition to
        many tunnels and densely covered viaducts. How to establish the next choice on the path of a
        vehicle in such intricate settings is not straightforward.
     2. A vehicle may be heading for different destinations. Obviously different destinations will lead to
        different itinerary choices. This adds another dimension of uncertainty to the route prediction
        problem.

28 | P a g e
www.iiste.org
Journal of Information Engineering and Applications                                                  www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011
      3. Traffic conditions are time-varying and will influence the route decision of a vehicle dramatically.
         Generally speaking, in off-peak hours, drivers would prefer routes of shorter distance but are more
         likely to choose routes of low traffic during rush hours. The driver’s route choices are under the
         influence of real-time traffic conditions.
         In additional, the vehicle route choice is a very complex process. It is influenced by the structure
of the urban road, real time traffic condition and emergencies on the road. It is quite hard, to obtain the pre
knowledge about how many immediately preceding road segments are associated with the upcoming route.

3. Statistical Route Prediction Models
          Here in this section we are going to describe the three statistical models for predicting the routes
for vehicle driver .For prediction of a future route for vehicle driver we have to attach a GPS to each
vehicle and we have to follow the route traces of a vehicle then we have to convert this collected GPS data
into the map matching algorithm. Because many times in a urban environment due to the large buildings
and road segments covered under viaducts leads to produce the GPS data erroneous, which produces the
uncertain route prediction.


3.1 Markov Model
Markov Model predicts only vehicle’s near term future route is based on its near term past route (SAE
2008). A Markov model is a graphical statistical model that captures a sequential model of behaviour. It is
a tuple < S,A,T >, where S is a (finite) set of states, A is a (finite) set of actions, and T is the transition
function T : S×A×S→R, where T(si,a, sj) = p(si|sj,a), which is the probability of transitioning to state si
given that the system is in state sj and action a is executed. Given a Markov model and an initial state
distribution π, one can predict the state distribution that results from carrying out a sequence of actions <a 1,
a2, ..., an >. If pt (si) is the probability of being in state si at time t (where π(.) = π 0(.) is the initial state
distribution), then pt+1(si) = ΣsjєS pt (s)T(si,at+1, sj). Note that while the exact state of the system is uncertain
when doing prediction, it is assumed that the state is known for certain after the actions are actually
executed in the world.
           The Markov model can be used to predict beyond just the next road segment. We can clearly build
P [X(1)|X(0)] , where x(0) is the current road segment and x(1) is next road segment, which is the
distribution over the road segments after the next one, given the current one. We can also user higher order
models to make these farther out predictions, e.g. P [X(2) |X(−1) , X(0)] . In general, we can build an nth
order Markov model (n ≥ 1) to predict the mth next encountered segment (m ≥ 1). The general nth order
model is denoted as,
                         ������������[������(������)]=������[������(������)|������(−������+1),������(−������+2),…,������(0)]                                     (1)
         Our prediction algorithm is based on observations of where drivers drive measured from GPS
receivers. We do not attempt to predict where on the road segment a vehicle will be, nor do we attempt to
predict when it will arrive at a road segment. Our goal is predict the chain of road segments that a vehicle
will next encounter. In this way, our predictions show the vehicle’s future path, elevation, and turns.
It observes at how prediction accuracy changes as it increase n, the number of segments look at into the
past (better). It also looks at how prediction accuracy changes as m increases, the number of segments it
predicts into the future (worse). The Markov model does not explicitly constrain a vehicle to adhere to the
connectedness of the road network. A trained model could conceivably predict that a driver will jump over
several road segments. However, since the model is trained from real data, where such jumps do not occur,
the Markov model implicitly prevents such nonsense predictions. One advantage of probabilistic
predictions is that the algorithm has a measure of its own uncertainty that can be usefully reported to in-
vehicle applications. For instance, automatically engaging a turn signal might depend on near 100%
prediction certainty, while presenting a point of interest would not require the same level of confidence.




29 | P a g e
www.iiste.org
Journal of Information Engineering and Applications                                                 www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011
3.2 Hidden Markov Model
           A Hidden Markov model (HMM) (Simmons) is a Markov model with hidden (unobservable) state.
An HMM is a five tuple < S,A,O,T,Z,p >, where S, A, and T are the same as with the Markov model and p
is the initial state distribution. In addition, O is a (finite) set of observations and Z is the observation
function Z : O×S×A→R, where Z(o, s, a) =p( o| s, a), which is the probability of receiving observation o
given that the system ends up in state s after executing action a. For many problems, Z is the same for all
values of a, (i.e., Z(o, si, aj)=Z(o, si, ak)). In what follows, it will use Z(o, s) as shorthand for Z(o, s, a),
when Z is the same for all values of a.
          As in a Markov model, the exact state of the system is uncertain when predicting the effects of
actions. Unlike a Markov model, however, the state may remain uncertain even after executing the actions.
For a HMM, both transitions and observations are used to help infer the next state distribution. The same
equation as given above for Markov models is used to predict the state distribution at time t +1 given the
state distribution at time t and the action at+1. In addition, ot+1, the observation at time t +1 is used to further
constrain the state distribution:
                              P t+1(s) pt+1(s)Z(o t+1, s, a t+1)/ p(ot+1)                                      (2)

Where p(o t+1) is a normalizing factor and is given by,

                                 p(ot+1) = ∑ pt+1 (si)z(ot+1,si,at+1)                                           (3)
                                                     siεS

3.3 Variable-order Markov Model
          VOM models arose as a solution to capture longer regularities while avoiding the size explosion
caused by increasing the order of the model. In contrast to the Markov chain models, where each random
variable in a sequence with a Markov property depends on a fixed number of random variables, in VOM
models this number of conditioning random variables may vary based on the specific observed realization,
known as context. These models consider that in realistic settings, there are certain realizations of states
(represented by contexts) in which some past states are independent from the future states leading to a great
reduction in the number of model parameters.
          Algorithm for learning VMM over a finite alphabet ∑. Such algorithms attempt to learn
probabilistic finite state automata, which can model sequential data of considerable complexity. In contrast
to N-gram Markov models, which attempt to estimate conditional distributions of the form P(σ|s), with S Є
∑N and σ Є ∑, VMM algorithms learn such conditional distributions where context lengths |s| vary in
response to the available statistics in the training data. Thus, VMMs provide the means for capturing both
large and small order Markov dependencies based on the observed data. Although in general less
expressive than HMMs, VMM algorithms have been used to solve many applications with notable success.
The simpler nature of VMM methods also makes them amenable for analysis, and some VMM algorithms
that we discuss below enjoy tight theoretical performance guarantees, which in general are not possible in
learning using HMMs.
          For route prediction VMM extends to probabilistic suffix tree (PST) algorithm (Ron et al., 1996)
attempts to construct the single “best" D-bounded VMM according to the training sequence. It is assumed
that an upper bound D on the Markov order of the “true source" is known to the learner.
          A PST over ∑ is a non empty rooted tree, where the degree of each node varies between zero (for
leaves) and│∑│each edge in the tree is associated with a unique symbol in ∑. These edge labels define a
unique sequence s for each path from a node v to the root. The sequence s labels the node v. Any such PST
tree induces a “suffix set" S consisting of the labels of all the nodes. The goal of the PST learning algorithm
is to identify a good suffix set S for a PST tree and to assign a probability distribution P(σ|S) over ∑, for
each s Є S.


4. Algorithms for Route Prediction

30 | P a g e
www.iiste.org
Journal of Information Engineering and Applications                                                www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011
        In this section we have described the detailed algorithms for route prediction using statistical
models from previous section.
4.1 Route Prediction Algorithm using Markov Model
         As described in previous section Markov Model(SAE 2008) is able to predict the next route
segment but it has to know the past road segment, which is dependent on its previous road segment.
Steps for route prediction are as follows:
   INPUT: Trained vehicle road segments
   OUTPUT: Predicts the future road segment
        1. Collect the experimental GPS data from the vehicles route segments. (This data is a set of time-
             stamped latitude and longitude pairs).
        2. Convert this GPS vehicle data with road segment with the help of map matching algorithm
             (Shanugan 1998).
        3. This algorithm matches each GPS point to road segment, taking into account which roads are
             nearby as well as constraints imposed by the connectivity and speed limits of the road network.
        4. Process the road segments to eliminate any adjacent repeated road segments. By considering
             each trip represented by a continuous road segment.

4.2 Route Prediction Algorithm Using Hidden Markov Model
          Hidden Markov Model observes the hidden states. It learned from trips. It is described by Ried
Simmons, that a trip is a sequence of data points, where each data point contains the link and time stamp
indicating when the vehicle was on the link .The link associated with the last data point is considered as a
goal of the trip. For a trip from source to destination route segments are divided into number of links. Links
are nothing but the road segments.
Steps for route prediction are as follows:
   INPUT : Trained vehicle road segments.
   OUTPUT: Predicts the future road segments.
              1.   Collect the experimental GPS data from the vehicles route segments. (This data is a set of
                   time-stamped latitude and longitude pairs).
              2.   Convert this GPS vehicle data with road segment with the help of map matching
                   algorithm.
              3.   Go through the trip sequences, whenever there is transition from one link lj to another li to
                   access element lj in the hash table increment the number of transitions to li, under the
                   appropriate condition.
              4.   If goal link (last link)is g then, find the entry < li, g, m> exists if found increment m. where
                   m=time, g=goal, l=link
                   Otherwise, add a new element to < li, g, 1> for the link 1.
              5.   This process is repeated from g to the END_OF_TRIP link.
              6.   The statistics for the time spent on lj are updated, where the time spent on the lj is
                   determined as the time stamp the first trip data point that is on lj until the time stamp of
                   the first trip data point that is on li.
It yields accurate prediction is that the training data is reliable.

4.3 Route Prediction Algorithm Using Variable order Markov Model(Guangtao 2009)
   INPUT : Trained vehicle road segments.
   OUTPUT: Predicts the future road segments.


31 | P a g e
www.iiste.org
Journal of Information Engineering and Applications                                             www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011
              1.   Collect the experimental GPS data from the vehicles route segments. (This data is a set of
                   time-stamped latitude and longitude pairs).
              2.   Convert this GPS vehicle data with road segment with the help of map matching
                   algorithm.
              3.   Trace the raw GPS trace data, geographical locations of vehicle are all adjusted to
                   corresponding roads. Let R= {R1,R2,…Rn} be the set of all road segments and Ri is the ith
                   road segment and m containing the consecutive road segments, as Sm=r1r2,….rm where ri
                   ЄR, m>1.
              4.   Vehicle traces parsing. For each road the vehicle passed, only the k bounded preceding
                   roads and the next adjacent road for prediction. Where K is the memory length of a model.
              5.   Build the PST .Based on the passed road segments.
              6.   When the vehicle moves to road rc (rc =current road segment) at time t,and the roads it just
                   passed are r1r2,….rk(k<K) .To predict its next road it checks PST was constructed for rc for
                   corresponding time period .
              7.   If no such PST was found vehicle is fail to predict the next road.
              8.   If PST found it searches the next road segments with the longest suffix matching with
                   rcr1r2………… rk and ending with rn. where rn is the one of the unidirectional adjacent road of
                   rc.
It returns the patterns with highest probability .
It is useful for real time traffic conditions.
5. Conclusion
          As we have studied the statistical models for route prediction in previous section .For each model
we have to give a trained vehicle route set as input then only we can predict the future road segment. In
Simple or hidden Markov model (HMM) to predict the short-term driving route of vehicles, on the static
route selection that took no dynamic traffic conditions into account. Simple Markov model is poor in
capturing variable order Markov dependencies. Although HMM is capable of handling the vehicles moving
patterns, training the HMM model suffers from known learn ability hardness. Where using VMM which
deploys PST to generate the mobility patterns for long term route prediction, which can be applied for real
time traffic conditions for predicting the future route for the driver.
The table1 shows the comparative study of these three models.
The above mentioned all models are having centralized approach, when traffic is so high or more vehicles
are involved in it will produce the poor scalability.


References
Heddebaut, M., Rioult, J., Ghys, J.P., Gransart, C., and Ambellouis, S. (2005), “Broadband vehicle-to-
vehicle communication using an extended autonomous cruise control sensor,” Meas. Sci. Technol., vol. 16,
no. 6, pp. 1363–1373.
Shulman, M. and Deering, R. (2005), “Third annual report of the crash avoidance metrics partnership April
2003–March 2004,” Nat. Highw. Traffic Safety Admin. (NHTSA), Washington, DC. DOT HS 809 837.
Andreone, L., and Ricerche, C. (2005) , “Activities and applications of the vehicle to vehicle and vehicle to
infrastructure communication to enhance road safety,” in Proc. 5th Eur. Congr. Exhib. ITS, Hannover,
Germany.
Kruger, R., Fuler, H., Torrent-Moreno, M., Transier, M., Hartenstein, H., and Effelsberg, W. (2005)
,“Statistical analysis of the FleetNet highway movement patterns,” University of Mannheim, Mannheim,
Germany, Tech. Rep. TR-2005-004.


32 | P a g e
www.iiste.org
Journal of Information Engineering and Applications                                            www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011
Guangtao Xue, Zhongwei Li, and Hongzi Zhu, (2009), “Traffic-Known Urban Vehicular Route Prediction
Based on Partial Mobility Patterns”, IEEE.
SAE (2008) World Congress, April-2008, USA.”A Markov Model For Driver Turn Prediction”.
Ried Simmons, Brett Browning, Yilu Zhang & Varsha Sadekar, ”Learning To Predict Driver Route And
destination Intent.”
Shanugan, K.S and A.M. Breipohl, (1998), “Random Signals: Detection, Estimation and Data Analysis”,
New York: John Willey & Sons.664.
Dana Ron ,Yoram singer and Naftali Tishby(1996),”The Power of Amnesia: Learning Probabilistic
Automata with Variable Memory Length. Machine Learning ”.pp117-149.




                                    Fig.1: Vehicular Ad Hoc Network Overview
                                    Table 1: Comparison of statistical models

                                                                                Variable Order Markov
         Markov Model                       Hidden Markov Model
                                                                                        Model

  1.   It observes only fixed no.      It observes Hidden states, as well   It observes a variable order
       of random variables             as fixed no. of random variables.    variables not fixed.

  2.   Static approach                 Static approach                      Dynamic approach

  3.   Predict only next route         Predicts next route segment          Generates the sequences of
       segment dependent on            independent on previous road         road segments for prediction.
       previous road segment.          segment.

  4.   It Doesn’t consider other       It Consider other parameters like    It Consider other parameters
       parameters.                     Time, Day, Month, Year.              like Time, Day, Month, Year.




33 | P a g e
www.iiste.org

Más contenido relacionado

La actualidad más candente

A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...CSCJournals
 
Report bep thomas_blanken
Report bep thomas_blankenReport bep thomas_blanken
Report bep thomas_blankenxepost
 
Volkova_DICTA_robust_feature_based_visual_navigation
Volkova_DICTA_robust_feature_based_visual_navigationVolkova_DICTA_robust_feature_based_visual_navigation
Volkova_DICTA_robust_feature_based_visual_navigationAnastasiia Volkova
 
Implementation of Motion Model Using Vanet
Implementation of Motion Model Using VanetImplementation of Motion Model Using Vanet
Implementation of Motion Model Using VanetIJCERT
 
2013 methodology for the calibration of vissim in mixed traffic
2013 methodology for the calibration of vissim in mixed traffic2013 methodology for the calibration of vissim in mixed traffic
2013 methodology for the calibration of vissim in mixed trafficDaniel Sitompul
 
Driving behaviors for adas and autonomous driving XIII
Driving behaviors for adas and autonomous driving XIIIDriving behaviors for adas and autonomous driving XIII
Driving behaviors for adas and autonomous driving XIIIYu Huang
 
Artificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path PlanningArtificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path Planningiosrjce
 
Dynamic Path Planning
Dynamic Path PlanningDynamic Path Planning
Dynamic Path Planningdare2kreate
 
Path Planning And Navigation
Path Planning And NavigationPath Planning And Navigation
Path Planning And Navigationguest90654fd
 
Performance Analysis and Optimal Detection of Spatial Modulation
Performance Analysis and Optimal Detection of Spatial ModulationPerformance Analysis and Optimal Detection of Spatial Modulation
Performance Analysis and Optimal Detection of Spatial Modulationrahulmonikasharma
 
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...csandit
 
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...ijcsit
 
Driving behaviors for adas and autonomous driving XI
Driving behaviors for adas and autonomous driving XIDriving behaviors for adas and autonomous driving XI
Driving behaviors for adas and autonomous driving XIYu Huang
 
Driving behavior for ADAS and Autonomous Driving
Driving behavior for ADAS and Autonomous DrivingDriving behavior for ADAS and Autonomous Driving
Driving behavior for ADAS and Autonomous DrivingYu Huang
 
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...TELKOMNIKA JOURNAL
 
Transceiver Design for MIMO Systems with Individual Transmit Power Constraints
Transceiver Design for MIMO Systems with Individual Transmit Power ConstraintsTransceiver Design for MIMO Systems with Individual Transmit Power Constraints
Transceiver Design for MIMO Systems with Individual Transmit Power ConstraintsIJECEIAES
 

La actualidad más candente (20)

A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
 
Report bep thomas_blanken
Report bep thomas_blankenReport bep thomas_blanken
Report bep thomas_blanken
 
Volkova_DICTA_robust_feature_based_visual_navigation
Volkova_DICTA_robust_feature_based_visual_navigationVolkova_DICTA_robust_feature_based_visual_navigation
Volkova_DICTA_robust_feature_based_visual_navigation
 
Implementation of Motion Model Using Vanet
Implementation of Motion Model Using VanetImplementation of Motion Model Using Vanet
Implementation of Motion Model Using Vanet
 
Zeleke_Poster14
Zeleke_Poster14Zeleke_Poster14
Zeleke_Poster14
 
2013 methodology for the calibration of vissim in mixed traffic
2013 methodology for the calibration of vissim in mixed traffic2013 methodology for the calibration of vissim in mixed traffic
2013 methodology for the calibration of vissim in mixed traffic
 
Fb4301931934
Fb4301931934Fb4301931934
Fb4301931934
 
Driving behaviors for adas and autonomous driving XIII
Driving behaviors for adas and autonomous driving XIIIDriving behaviors for adas and autonomous driving XIII
Driving behaviors for adas and autonomous driving XIII
 
Artificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path PlanningArtificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path Planning
 
Dynamic Path Planning
Dynamic Path PlanningDynamic Path Planning
Dynamic Path Planning
 
Path Planning And Navigation
Path Planning And NavigationPath Planning And Navigation
Path Planning And Navigation
 
Performance Analysis and Optimal Detection of Spatial Modulation
Performance Analysis and Optimal Detection of Spatial ModulationPerformance Analysis and Optimal Detection of Spatial Modulation
Performance Analysis and Optimal Detection of Spatial Modulation
 
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
 
Major ppt
Major pptMajor ppt
Major ppt
 
image processing
image processingimage processing
image processing
 
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
 
Driving behaviors for adas and autonomous driving XI
Driving behaviors for adas and autonomous driving XIDriving behaviors for adas and autonomous driving XI
Driving behaviors for adas and autonomous driving XI
 
Driving behavior for ADAS and Autonomous Driving
Driving behavior for ADAS and Autonomous DrivingDriving behavior for ADAS and Autonomous Driving
Driving behavior for ADAS and Autonomous Driving
 
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...
 
Transceiver Design for MIMO Systems with Individual Transmit Power Constraints
Transceiver Design for MIMO Systems with Individual Transmit Power ConstraintsTransceiver Design for MIMO Systems with Individual Transmit Power Constraints
Transceiver Design for MIMO Systems with Individual Transmit Power Constraints
 

Destacado

Evaluate and Analysis of MAC Protocols for VANET
Evaluate and Analysis of MAC Protocols for VANETEvaluate and Analysis of MAC Protocols for VANET
Evaluate and Analysis of MAC Protocols for VANETScott Turner
 
Line Spectral Pairs Based Voice Conversion using Radial Basis Function
Line Spectral Pairs Based Voice Conversion using Radial Basis FunctionLine Spectral Pairs Based Voice Conversion using Radial Basis Function
Line Spectral Pairs Based Voice Conversion using Radial Basis FunctionIDES Editor
 
Signal Processing Tool for Emotion Recognition
Signal Processing Tool for Emotion RecognitionSignal Processing Tool for Emotion Recognition
Signal Processing Tool for Emotion Recognitionidescitation
 
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...IJMER
 
From the Signal to the Symbol: Structure and Process in Artificial Intelligence
From the Signal to the Symbol: Structure and Process in Artificial IntelligenceFrom the Signal to the Symbol: Structure and Process in Artificial Intelligence
From the Signal to the Symbol: Structure and Process in Artificial IntelligenceMarko Rodriguez
 
Land Use and Transport Integrated Policies in Peripheral Areas
Land Use and Transport Integrated Policies in Peripheral AreasLand Use and Transport Integrated Policies in Peripheral Areas
Land Use and Transport Integrated Policies in Peripheral AreasHenar Salas-Olmedo
 
VANETS Vehicular Adhoc NETworkS
VANETS Vehicular Adhoc NETworkSVANETS Vehicular Adhoc NETworkS
VANETS Vehicular Adhoc NETworkSSridhar Raghavan
 
Prediction of route and destination intent shibumon alampatta
Prediction of route and destination intent  shibumon alampattaPrediction of route and destination intent  shibumon alampatta
Prediction of route and destination intent shibumon alampattaShibu Alampatta
 
Security in GSM(2G) and UMTS(3G) Networks
Security in GSM(2G) and UMTS(3G) NetworksSecurity in GSM(2G) and UMTS(3G) Networks
Security in GSM(2G) and UMTS(3G) NetworksNaveen Kumar
 

Destacado (13)

Evaluate and Analysis of MAC Protocols for VANET
Evaluate and Analysis of MAC Protocols for VANETEvaluate and Analysis of MAC Protocols for VANET
Evaluate and Analysis of MAC Protocols for VANET
 
Line Spectral Pairs Based Voice Conversion using Radial Basis Function
Line Spectral Pairs Based Voice Conversion using Radial Basis FunctionLine Spectral Pairs Based Voice Conversion using Radial Basis Function
Line Spectral Pairs Based Voice Conversion using Radial Basis Function
 
Dsp 2015 - conference brochure
Dsp 2015 - conference brochureDsp 2015 - conference brochure
Dsp 2015 - conference brochure
 
Signal Processing Tool for Emotion Recognition
Signal Processing Tool for Emotion RecognitionSignal Processing Tool for Emotion Recognition
Signal Processing Tool for Emotion Recognition
 
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...
 
From the Signal to the Symbol: Structure and Process in Artificial Intelligence
From the Signal to the Symbol: Structure and Process in Artificial IntelligenceFrom the Signal to the Symbol: Structure and Process in Artificial Intelligence
From the Signal to the Symbol: Structure and Process in Artificial Intelligence
 
Land Use and Transport Integrated Policies in Peripheral Areas
Land Use and Transport Integrated Policies in Peripheral AreasLand Use and Transport Integrated Policies in Peripheral Areas
Land Use and Transport Integrated Policies in Peripheral Areas
 
VANETS Vehicular Adhoc NETworkS
VANETS Vehicular Adhoc NETworkSVANETS Vehicular Adhoc NETworkS
VANETS Vehicular Adhoc NETworkS
 
Prediction of route and destination intent shibumon alampatta
Prediction of route and destination intent  shibumon alampattaPrediction of route and destination intent  shibumon alampatta
Prediction of route and destination intent shibumon alampatta
 
Introduction to VANET
Introduction to VANETIntroduction to VANET
Introduction to VANET
 
Dsp 2015 - conference brochure (1)
Dsp 2015 - conference brochure (1)Dsp 2015 - conference brochure (1)
Dsp 2015 - conference brochure (1)
 
Security in GSM(2G) and UMTS(3G) Networks
Security in GSM(2G) and UMTS(3G) NetworksSecurity in GSM(2G) and UMTS(3G) Networks
Security in GSM(2G) and UMTS(3G) Networks
 
MS_PBRSolutionOverview
MS_PBRSolutionOverviewMS_PBRSolutionOverview
MS_PBRSolutionOverview
 

Similar a Statistical models predict vehicle routes in VANETs

Modeling and simulation of vehicular networks
Modeling and simulation of vehicular networksModeling and simulation of vehicular networks
Modeling and simulation of vehicular networksDaisyWatson5
 
Modeling business management systems transportation
Modeling business management systems transportationModeling business management systems transportation
Modeling business management systems transportationSherin El-Rashied
 
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...cscpconf
 
D021203019025
D021203019025D021203019025
D021203019025theijes
 
Review of Fuzzy Model
Review of Fuzzy Model Review of Fuzzy Model
Review of Fuzzy Model NurudeenIshaq1
 
Fuzzy Model Presentation
Fuzzy Model Presentation Fuzzy Model Presentation
Fuzzy Model Presentation NurudeenIshaq1
 
Simulation Based Analysis of Bee Swarm Inspired Hybrid Routing Protocol Param...
Simulation Based Analysis of Bee Swarm Inspired Hybrid Routing Protocol Param...Simulation Based Analysis of Bee Swarm Inspired Hybrid Routing Protocol Param...
Simulation Based Analysis of Bee Swarm Inspired Hybrid Routing Protocol Param...Editor IJCATR
 
Using Genetic Algorithm for Shortest Path Selection with Real Time Traffic Flow
Using Genetic Algorithm for Shortest Path Selection with Real Time Traffic FlowUsing Genetic Algorithm for Shortest Path Selection with Real Time Traffic Flow
Using Genetic Algorithm for Shortest Path Selection with Real Time Traffic FlowIJCSIS Research Publications
 
16 channels velodyne versus planar lidars based perception system for large s...
16 channels velodyne versus planar lidars based perception system for large s...16 channels velodyne versus planar lidars based perception system for large s...
16 channels velodyne versus planar lidars based perception system for large s...Brett Johnson
 
16 channels Velodyne versus planar LiDARs based perception system for Large S...
16 channels Velodyne versus planar LiDARs based perception system for Large S...16 channels Velodyne versus planar LiDARs based perception system for Large S...
16 channels Velodyne versus planar LiDARs based perception system for Large S...Brett Johnson
 
Congestion control & collision avoidance algorithm in intelligent transportation
Congestion control & collision avoidance algorithm in intelligent transportationCongestion control & collision avoidance algorithm in intelligent transportation
Congestion control & collision avoidance algorithm in intelligent transportationIAEME Publication
 
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS cscpconf
 
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKSAUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKScsandit
 
Auto mobile vehicle direction in road traffic using artificial neural networks
Auto mobile vehicle direction in road traffic using artificial neural networksAuto mobile vehicle direction in road traffic using artificial neural networks
Auto mobile vehicle direction in road traffic using artificial neural networkscsandit
 
A Simulation-Based Dynamic Traffic Assignment Model With Combined Modes
A Simulation-Based Dynamic Traffic Assignment Model With Combined ModesA Simulation-Based Dynamic Traffic Assignment Model With Combined Modes
A Simulation-Based Dynamic Traffic Assignment Model With Combined ModesAllison Koehn
 
Ieeepro techno solutions 2013 ieee embedded project emergency messaging for...
Ieeepro techno solutions   2013 ieee embedded project emergency messaging for...Ieeepro techno solutions   2013 ieee embedded project emergency messaging for...
Ieeepro techno solutions 2013 ieee embedded project emergency messaging for...srinivasanece7
 
LANE CHANGE DETECTION AND TRACKING FOR A SAFE-LANE APPROACH IN REAL TIME VISI...
LANE CHANGE DETECTION AND TRACKING FOR A SAFE-LANE APPROACH IN REAL TIME VISI...LANE CHANGE DETECTION AND TRACKING FOR A SAFE-LANE APPROACH IN REAL TIME VISI...
LANE CHANGE DETECTION AND TRACKING FOR A SAFE-LANE APPROACH IN REAL TIME VISI...cscpconf
 
Intelligent Collision avoidance and monitoring system for railway using wirel...
Intelligent Collision avoidance and monitoring system for railway using wirel...Intelligent Collision avoidance and monitoring system for railway using wirel...
Intelligent Collision avoidance and monitoring system for railway using wirel...Editor IJMTER
 

Similar a Statistical models predict vehicle routes in VANETs (20)

Modeling and simulation of vehicular networks
Modeling and simulation of vehicular networksModeling and simulation of vehicular networks
Modeling and simulation of vehicular networks
 
Modeling business management systems transportation
Modeling business management systems transportationModeling business management systems transportation
Modeling business management systems transportation
 
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
 
D021203019025
D021203019025D021203019025
D021203019025
 
Review of Fuzzy Model
Review of Fuzzy Model Review of Fuzzy Model
Review of Fuzzy Model
 
Fuzzy Model Presentation
Fuzzy Model Presentation Fuzzy Model Presentation
Fuzzy Model Presentation
 
Simulation Based Analysis of Bee Swarm Inspired Hybrid Routing Protocol Param...
Simulation Based Analysis of Bee Swarm Inspired Hybrid Routing Protocol Param...Simulation Based Analysis of Bee Swarm Inspired Hybrid Routing Protocol Param...
Simulation Based Analysis of Bee Swarm Inspired Hybrid Routing Protocol Param...
 
Using Genetic Algorithm for Shortest Path Selection with Real Time Traffic Flow
Using Genetic Algorithm for Shortest Path Selection with Real Time Traffic FlowUsing Genetic Algorithm for Shortest Path Selection with Real Time Traffic Flow
Using Genetic Algorithm for Shortest Path Selection with Real Time Traffic Flow
 
1
11
1
 
16 channels velodyne versus planar lidars based perception system for large s...
16 channels velodyne versus planar lidars based perception system for large s...16 channels velodyne versus planar lidars based perception system for large s...
16 channels velodyne versus planar lidars based perception system for large s...
 
16 channels Velodyne versus planar LiDARs based perception system for Large S...
16 channels Velodyne versus planar LiDARs based perception system for Large S...16 channels Velodyne versus planar LiDARs based perception system for Large S...
16 channels Velodyne versus planar LiDARs based perception system for Large S...
 
Congestion control & collision avoidance algorithm in intelligent transportation
Congestion control & collision avoidance algorithm in intelligent transportationCongestion control & collision avoidance algorithm in intelligent transportation
Congestion control & collision avoidance algorithm in intelligent transportation
 
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS
 
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKSAUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS
AUTO-MOBILE VEHICLE DIRECTION IN ROAD TRAFFIC USING ARTIFICIAL NEURAL NETWORKS
 
Auto mobile vehicle direction in road traffic using artificial neural networks
Auto mobile vehicle direction in road traffic using artificial neural networksAuto mobile vehicle direction in road traffic using artificial neural networks
Auto mobile vehicle direction in road traffic using artificial neural networks
 
Accident risk simulation
Accident risk simulationAccident risk simulation
Accident risk simulation
 
A Simulation-Based Dynamic Traffic Assignment Model With Combined Modes
A Simulation-Based Dynamic Traffic Assignment Model With Combined ModesA Simulation-Based Dynamic Traffic Assignment Model With Combined Modes
A Simulation-Based Dynamic Traffic Assignment Model With Combined Modes
 
Ieeepro techno solutions 2013 ieee embedded project emergency messaging for...
Ieeepro techno solutions   2013 ieee embedded project emergency messaging for...Ieeepro techno solutions   2013 ieee embedded project emergency messaging for...
Ieeepro techno solutions 2013 ieee embedded project emergency messaging for...
 
LANE CHANGE DETECTION AND TRACKING FOR A SAFE-LANE APPROACH IN REAL TIME VISI...
LANE CHANGE DETECTION AND TRACKING FOR A SAFE-LANE APPROACH IN REAL TIME VISI...LANE CHANGE DETECTION AND TRACKING FOR A SAFE-LANE APPROACH IN REAL TIME VISI...
LANE CHANGE DETECTION AND TRACKING FOR A SAFE-LANE APPROACH IN REAL TIME VISI...
 
Intelligent Collision avoidance and monitoring system for railway using wirel...
Intelligent Collision avoidance and monitoring system for railway using wirel...Intelligent Collision avoidance and monitoring system for railway using wirel...
Intelligent Collision avoidance and monitoring system for railway using wirel...
 

Más de Alexander Decker

Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...Alexander Decker
 
A validation of the adverse childhood experiences scale in
A validation of the adverse childhood experiences scale inA validation of the adverse childhood experiences scale in
A validation of the adverse childhood experiences scale inAlexander Decker
 
A usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websitesA usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websitesAlexander Decker
 
A universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banksA universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banksAlexander Decker
 
A unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized dA unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized dAlexander Decker
 
A trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistanceA trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistanceAlexander Decker
 
A transformational generative approach towards understanding al-istifham
A transformational  generative approach towards understanding al-istifhamA transformational  generative approach towards understanding al-istifham
A transformational generative approach towards understanding al-istifhamAlexander Decker
 
A time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibiaA time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibiaAlexander Decker
 
A therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school childrenA therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school childrenAlexander Decker
 
A theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banksA theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banksAlexander Decker
 
A systematic evaluation of link budget for
A systematic evaluation of link budget forA systematic evaluation of link budget for
A systematic evaluation of link budget forAlexander Decker
 
A synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjabA synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjabAlexander Decker
 
A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...Alexander Decker
 
A survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalA survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalAlexander Decker
 
A survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniquesA survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniquesAlexander Decker
 
A survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo dbA survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo dbAlexander Decker
 
A survey on challenges to the media cloud
A survey on challenges to the media cloudA survey on challenges to the media cloud
A survey on challenges to the media cloudAlexander Decker
 
A survey of provenance leveraged
A survey of provenance leveragedA survey of provenance leveraged
A survey of provenance leveragedAlexander Decker
 
A survey of private equity investments in kenya
A survey of private equity investments in kenyaA survey of private equity investments in kenya
A survey of private equity investments in kenyaAlexander Decker
 
A study to measures the financial health of
A study to measures the financial health ofA study to measures the financial health of
A study to measures the financial health ofAlexander Decker
 

Más de Alexander Decker (20)

Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...
 
A validation of the adverse childhood experiences scale in
A validation of the adverse childhood experiences scale inA validation of the adverse childhood experiences scale in
A validation of the adverse childhood experiences scale in
 
A usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websitesA usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websites
 
A universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banksA universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banks
 
A unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized dA unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized d
 
A trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistanceA trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistance
 
A transformational generative approach towards understanding al-istifham
A transformational  generative approach towards understanding al-istifhamA transformational  generative approach towards understanding al-istifham
A transformational generative approach towards understanding al-istifham
 
A time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibiaA time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibia
 
A therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school childrenA therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school children
 
A theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banksA theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banks
 
A systematic evaluation of link budget for
A systematic evaluation of link budget forA systematic evaluation of link budget for
A systematic evaluation of link budget for
 
A synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjabA synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjab
 
A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...
 
A survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalA survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incremental
 
A survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniquesA survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniques
 
A survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo dbA survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo db
 
A survey on challenges to the media cloud
A survey on challenges to the media cloudA survey on challenges to the media cloud
A survey on challenges to the media cloud
 
A survey of provenance leveraged
A survey of provenance leveragedA survey of provenance leveraged
A survey of provenance leveraged
 
A survey of private equity investments in kenya
A survey of private equity investments in kenyaA survey of private equity investments in kenya
A survey of private equity investments in kenya
 
A study to measures the financial health of
A study to measures the financial health ofA study to measures the financial health of
A study to measures the financial health of
 

Último

PB Project 1: Exploring Your Personal Brand
PB Project 1: Exploring Your Personal BrandPB Project 1: Exploring Your Personal Brand
PB Project 1: Exploring Your Personal BrandSharisaBethune
 
1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdf1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdfShaun Heinrichs
 
NewBase 19 April 2024 Energy News issue - 1717 by Khaled Al Awadi.pdf
NewBase  19 April  2024  Energy News issue - 1717 by Khaled Al Awadi.pdfNewBase  19 April  2024  Energy News issue - 1717 by Khaled Al Awadi.pdf
NewBase 19 April 2024 Energy News issue - 1717 by Khaled Al Awadi.pdfKhaled Al Awadi
 
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptxThe-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptxmbikashkanyari
 
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCRashishs7044
 
Enjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCR
Enjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCREnjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCR
Enjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCRalexsharmaa01
 
Organizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessOrganizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessSeta Wicaksana
 
Market Sizes Sample Report - 2024 Edition
Market Sizes Sample Report - 2024 EditionMarket Sizes Sample Report - 2024 Edition
Market Sizes Sample Report - 2024 EditionMintel Group
 
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort ServiceCall US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Servicecallgirls2057
 
MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?Olivia Kresic
 
PSCC - Capability Statement Presentation
PSCC - Capability Statement PresentationPSCC - Capability Statement Presentation
PSCC - Capability Statement PresentationAnamaria Contreras
 
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City GurgaonCall Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaoncallgirls2057
 
Darshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdfDarshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdfShashank Mehta
 
Financial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptxFinancial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptxsaniyaimamuddin
 
Unlocking the Future: Explore Web 3.0 Workshop to Start Earning Today!
Unlocking the Future: Explore Web 3.0 Workshop to Start Earning Today!Unlocking the Future: Explore Web 3.0 Workshop to Start Earning Today!
Unlocking the Future: Explore Web 3.0 Workshop to Start Earning Today!Doge Mining Website
 
(Best) ENJOY Call Girls in Faridabad Ex | 8377087607
(Best) ENJOY Call Girls in Faridabad Ex | 8377087607(Best) ENJOY Call Girls in Faridabad Ex | 8377087607
(Best) ENJOY Call Girls in Faridabad Ex | 8377087607dollysharma2066
 
Innovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfInnovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfrichard876048
 
Fordham -How effective decision-making is within the IT department - Analysis...
Fordham -How effective decision-making is within the IT department - Analysis...Fordham -How effective decision-making is within the IT department - Analysis...
Fordham -How effective decision-making is within the IT department - Analysis...Peter Ward
 
Ten Organizational Design Models to align structure and operations to busines...
Ten Organizational Design Models to align structure and operations to busines...Ten Organizational Design Models to align structure and operations to busines...
Ten Organizational Design Models to align structure and operations to busines...Seta Wicaksana
 

Último (20)

PB Project 1: Exploring Your Personal Brand
PB Project 1: Exploring Your Personal BrandPB Project 1: Exploring Your Personal Brand
PB Project 1: Exploring Your Personal Brand
 
1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdf1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdf
 
Japan IT Week 2024 Brochure by 47Billion (English)
Japan IT Week 2024 Brochure by 47Billion (English)Japan IT Week 2024 Brochure by 47Billion (English)
Japan IT Week 2024 Brochure by 47Billion (English)
 
NewBase 19 April 2024 Energy News issue - 1717 by Khaled Al Awadi.pdf
NewBase  19 April  2024  Energy News issue - 1717 by Khaled Al Awadi.pdfNewBase  19 April  2024  Energy News issue - 1717 by Khaled Al Awadi.pdf
NewBase 19 April 2024 Energy News issue - 1717 by Khaled Al Awadi.pdf
 
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptxThe-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
 
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR
8447779800, Low rate Call girls in Kotla Mubarakpur Delhi NCR
 
Enjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCR
Enjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCREnjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCR
Enjoy ➥8448380779▻ Call Girls In Sector 18 Noida Escorts Delhi NCR
 
Organizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessOrganizational Structure Running A Successful Business
Organizational Structure Running A Successful Business
 
Market Sizes Sample Report - 2024 Edition
Market Sizes Sample Report - 2024 EditionMarket Sizes Sample Report - 2024 Edition
Market Sizes Sample Report - 2024 Edition
 
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort ServiceCall US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
 
MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?
 
PSCC - Capability Statement Presentation
PSCC - Capability Statement PresentationPSCC - Capability Statement Presentation
PSCC - Capability Statement Presentation
 
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City GurgaonCall Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
 
Darshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdfDarshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdf
 
Financial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptxFinancial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptx
 
Unlocking the Future: Explore Web 3.0 Workshop to Start Earning Today!
Unlocking the Future: Explore Web 3.0 Workshop to Start Earning Today!Unlocking the Future: Explore Web 3.0 Workshop to Start Earning Today!
Unlocking the Future: Explore Web 3.0 Workshop to Start Earning Today!
 
(Best) ENJOY Call Girls in Faridabad Ex | 8377087607
(Best) ENJOY Call Girls in Faridabad Ex | 8377087607(Best) ENJOY Call Girls in Faridabad Ex | 8377087607
(Best) ENJOY Call Girls in Faridabad Ex | 8377087607
 
Innovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfInnovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdf
 
Fordham -How effective decision-making is within the IT department - Analysis...
Fordham -How effective decision-making is within the IT department - Analysis...Fordham -How effective decision-making is within the IT department - Analysis...
Fordham -How effective decision-making is within the IT department - Analysis...
 
Ten Organizational Design Models to align structure and operations to busines...
Ten Organizational Design Models to align structure and operations to busines...Ten Organizational Design Models to align structure and operations to busines...
Ten Organizational Design Models to align structure and operations to busines...
 

Statistical models predict vehicle routes in VANETs

  • 1. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 Study Of Statistical Models For Route Prediction Algorithms In VANET Uma Nagaraj*,Nivedita N.Kadam Dept. of Computer Engg. M.A.E , Alandi (D), Pune, India.  Umanagaraj67@gmail.com Abstract Vehicle-to-vehicle communication is a concept greatly studied during the past years. Vehicles equipped with devices capable of short-range wireless connectivity can form a particular mobile ad-hoc network, called a “Vehicular Ad-hoc NETwork” (or VANET). The users of a VANET, drivers or passengers, can be provided with useful information and with a wide range of interesting services. Route prediction is the missing piece in several proposed ideas for intelligent vehicles. In this paper, we are studying the algorithms that predict a vehicle’s entire route as it is driven. Such predictions are useful for giving the driver warnings about upcoming traffic hazards or information about upcoming points of interest, including advertising. This paper describes the route Prediction algorithms using Markov Model, Hidden Markov Model (HMM), Variable order Markov model (VMM). Keywords- VANET, MANET, ITs, GPS, HMM, VMM, PST. 1. Introduction The increasing demand of wireless communication and the needs of new wireless devices have tend to research on self organizing, self healing networks without the interference of centralized or pre- established infrastructure/authority. The networks with the absence of any centralized or pre-established infrastructure are called Ad hoc networks. Ad hoc Networks are collection of self-governing mobile nodes. Vehicular Ad hoc Networks (VANET) is the subclass of Mobile Ad Hoc Networks (MANETs). VANET is one of the influencing areas for the improvement of Intelligent Transportation System (ITS) in order to provide safety and comfort to the road users. VANET assists vehicle drivers to communicate and to coordinate among themselves in order to avoid any critical situation through Vehicle to Vehicle communication e.g. road side accidents, traffic jams, speed control, free passage of emergency vehicles and unseen obstacles etc. Besides safety applications VANET also provide comfort applications to the road users. For example, weather information, mobile e-commerce, internet access and other multimedia applications. The most well known applications include, “Advance Driver Assistance Systems (ADASE2) (Heddebaut 2005), Crash Avoidance Matrices Partnership (CAMP) (Shulman 2005), CARTALK2000 (Andreone 2005) and Fleet Net” (Kruger 2005) that were developed under collaboration of various governments and major car manufacturers. Figure 1 shows the overall working structure of VANET. 2. Need of Route Prediction in VANET Accurate travel route prediction in urban vehicular environments, however, is very challenging due to the following three reasons (Guangtao 2009). 1. The structure of the urban road networks is very complicated. For example, in a city environment there are about 1000 intersections connecting about 25000 surface road segments in addition to many tunnels and densely covered viaducts. How to establish the next choice on the path of a vehicle in such intricate settings is not straightforward. 2. A vehicle may be heading for different destinations. Obviously different destinations will lead to different itinerary choices. This adds another dimension of uncertainty to the route prediction problem. 28 | P a g e www.iiste.org
  • 2. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 3. Traffic conditions are time-varying and will influence the route decision of a vehicle dramatically. Generally speaking, in off-peak hours, drivers would prefer routes of shorter distance but are more likely to choose routes of low traffic during rush hours. The driver’s route choices are under the influence of real-time traffic conditions. In additional, the vehicle route choice is a very complex process. It is influenced by the structure of the urban road, real time traffic condition and emergencies on the road. It is quite hard, to obtain the pre knowledge about how many immediately preceding road segments are associated with the upcoming route. 3. Statistical Route Prediction Models Here in this section we are going to describe the three statistical models for predicting the routes for vehicle driver .For prediction of a future route for vehicle driver we have to attach a GPS to each vehicle and we have to follow the route traces of a vehicle then we have to convert this collected GPS data into the map matching algorithm. Because many times in a urban environment due to the large buildings and road segments covered under viaducts leads to produce the GPS data erroneous, which produces the uncertain route prediction. 3.1 Markov Model Markov Model predicts only vehicle’s near term future route is based on its near term past route (SAE 2008). A Markov model is a graphical statistical model that captures a sequential model of behaviour. It is a tuple < S,A,T >, where S is a (finite) set of states, A is a (finite) set of actions, and T is the transition function T : S×A×S→R, where T(si,a, sj) = p(si|sj,a), which is the probability of transitioning to state si given that the system is in state sj and action a is executed. Given a Markov model and an initial state distribution π, one can predict the state distribution that results from carrying out a sequence of actions <a 1, a2, ..., an >. If pt (si) is the probability of being in state si at time t (where π(.) = π 0(.) is the initial state distribution), then pt+1(si) = ΣsjєS pt (s)T(si,at+1, sj). Note that while the exact state of the system is uncertain when doing prediction, it is assumed that the state is known for certain after the actions are actually executed in the world. The Markov model can be used to predict beyond just the next road segment. We can clearly build P [X(1)|X(0)] , where x(0) is the current road segment and x(1) is next road segment, which is the distribution over the road segments after the next one, given the current one. We can also user higher order models to make these farther out predictions, e.g. P [X(2) |X(−1) , X(0)] . In general, we can build an nth order Markov model (n ≥ 1) to predict the mth next encountered segment (m ≥ 1). The general nth order model is denoted as, ������������[������(������)]=������[������(������)|������(−������+1),������(−������+2),…,������(0)] (1) Our prediction algorithm is based on observations of where drivers drive measured from GPS receivers. We do not attempt to predict where on the road segment a vehicle will be, nor do we attempt to predict when it will arrive at a road segment. Our goal is predict the chain of road segments that a vehicle will next encounter. In this way, our predictions show the vehicle’s future path, elevation, and turns. It observes at how prediction accuracy changes as it increase n, the number of segments look at into the past (better). It also looks at how prediction accuracy changes as m increases, the number of segments it predicts into the future (worse). The Markov model does not explicitly constrain a vehicle to adhere to the connectedness of the road network. A trained model could conceivably predict that a driver will jump over several road segments. However, since the model is trained from real data, where such jumps do not occur, the Markov model implicitly prevents such nonsense predictions. One advantage of probabilistic predictions is that the algorithm has a measure of its own uncertainty that can be usefully reported to in- vehicle applications. For instance, automatically engaging a turn signal might depend on near 100% prediction certainty, while presenting a point of interest would not require the same level of confidence. 29 | P a g e www.iiste.org
  • 3. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 3.2 Hidden Markov Model A Hidden Markov model (HMM) (Simmons) is a Markov model with hidden (unobservable) state. An HMM is a five tuple < S,A,O,T,Z,p >, where S, A, and T are the same as with the Markov model and p is the initial state distribution. In addition, O is a (finite) set of observations and Z is the observation function Z : O×S×A→R, where Z(o, s, a) =p( o| s, a), which is the probability of receiving observation o given that the system ends up in state s after executing action a. For many problems, Z is the same for all values of a, (i.e., Z(o, si, aj)=Z(o, si, ak)). In what follows, it will use Z(o, s) as shorthand for Z(o, s, a), when Z is the same for all values of a. As in a Markov model, the exact state of the system is uncertain when predicting the effects of actions. Unlike a Markov model, however, the state may remain uncertain even after executing the actions. For a HMM, both transitions and observations are used to help infer the next state distribution. The same equation as given above for Markov models is used to predict the state distribution at time t +1 given the state distribution at time t and the action at+1. In addition, ot+1, the observation at time t +1 is used to further constrain the state distribution: P t+1(s) pt+1(s)Z(o t+1, s, a t+1)/ p(ot+1) (2) Where p(o t+1) is a normalizing factor and is given by, p(ot+1) = ∑ pt+1 (si)z(ot+1,si,at+1) (3) siεS 3.3 Variable-order Markov Model VOM models arose as a solution to capture longer regularities while avoiding the size explosion caused by increasing the order of the model. In contrast to the Markov chain models, where each random variable in a sequence with a Markov property depends on a fixed number of random variables, in VOM models this number of conditioning random variables may vary based on the specific observed realization, known as context. These models consider that in realistic settings, there are certain realizations of states (represented by contexts) in which some past states are independent from the future states leading to a great reduction in the number of model parameters. Algorithm for learning VMM over a finite alphabet ∑. Such algorithms attempt to learn probabilistic finite state automata, which can model sequential data of considerable complexity. In contrast to N-gram Markov models, which attempt to estimate conditional distributions of the form P(σ|s), with S Є ∑N and σ Є ∑, VMM algorithms learn such conditional distributions where context lengths |s| vary in response to the available statistics in the training data. Thus, VMMs provide the means for capturing both large and small order Markov dependencies based on the observed data. Although in general less expressive than HMMs, VMM algorithms have been used to solve many applications with notable success. The simpler nature of VMM methods also makes them amenable for analysis, and some VMM algorithms that we discuss below enjoy tight theoretical performance guarantees, which in general are not possible in learning using HMMs. For route prediction VMM extends to probabilistic suffix tree (PST) algorithm (Ron et al., 1996) attempts to construct the single “best" D-bounded VMM according to the training sequence. It is assumed that an upper bound D on the Markov order of the “true source" is known to the learner. A PST over ∑ is a non empty rooted tree, where the degree of each node varies between zero (for leaves) and│∑│each edge in the tree is associated with a unique symbol in ∑. These edge labels define a unique sequence s for each path from a node v to the root. The sequence s labels the node v. Any such PST tree induces a “suffix set" S consisting of the labels of all the nodes. The goal of the PST learning algorithm is to identify a good suffix set S for a PST tree and to assign a probability distribution P(σ|S) over ∑, for each s Є S. 4. Algorithms for Route Prediction 30 | P a g e www.iiste.org
  • 4. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 In this section we have described the detailed algorithms for route prediction using statistical models from previous section. 4.1 Route Prediction Algorithm using Markov Model As described in previous section Markov Model(SAE 2008) is able to predict the next route segment but it has to know the past road segment, which is dependent on its previous road segment. Steps for route prediction are as follows: INPUT: Trained vehicle road segments OUTPUT: Predicts the future road segment 1. Collect the experimental GPS data from the vehicles route segments. (This data is a set of time- stamped latitude and longitude pairs). 2. Convert this GPS vehicle data with road segment with the help of map matching algorithm (Shanugan 1998). 3. This algorithm matches each GPS point to road segment, taking into account which roads are nearby as well as constraints imposed by the connectivity and speed limits of the road network. 4. Process the road segments to eliminate any adjacent repeated road segments. By considering each trip represented by a continuous road segment. 4.2 Route Prediction Algorithm Using Hidden Markov Model Hidden Markov Model observes the hidden states. It learned from trips. It is described by Ried Simmons, that a trip is a sequence of data points, where each data point contains the link and time stamp indicating when the vehicle was on the link .The link associated with the last data point is considered as a goal of the trip. For a trip from source to destination route segments are divided into number of links. Links are nothing but the road segments. Steps for route prediction are as follows: INPUT : Trained vehicle road segments. OUTPUT: Predicts the future road segments. 1. Collect the experimental GPS data from the vehicles route segments. (This data is a set of time-stamped latitude and longitude pairs). 2. Convert this GPS vehicle data with road segment with the help of map matching algorithm. 3. Go through the trip sequences, whenever there is transition from one link lj to another li to access element lj in the hash table increment the number of transitions to li, under the appropriate condition. 4. If goal link (last link)is g then, find the entry < li, g, m> exists if found increment m. where m=time, g=goal, l=link Otherwise, add a new element to < li, g, 1> for the link 1. 5. This process is repeated from g to the END_OF_TRIP link. 6. The statistics for the time spent on lj are updated, where the time spent on the lj is determined as the time stamp the first trip data point that is on lj until the time stamp of the first trip data point that is on li. It yields accurate prediction is that the training data is reliable. 4.3 Route Prediction Algorithm Using Variable order Markov Model(Guangtao 2009) INPUT : Trained vehicle road segments. OUTPUT: Predicts the future road segments. 31 | P a g e www.iiste.org
  • 5. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 1. Collect the experimental GPS data from the vehicles route segments. (This data is a set of time-stamped latitude and longitude pairs). 2. Convert this GPS vehicle data with road segment with the help of map matching algorithm. 3. Trace the raw GPS trace data, geographical locations of vehicle are all adjusted to corresponding roads. Let R= {R1,R2,…Rn} be the set of all road segments and Ri is the ith road segment and m containing the consecutive road segments, as Sm=r1r2,….rm where ri ЄR, m>1. 4. Vehicle traces parsing. For each road the vehicle passed, only the k bounded preceding roads and the next adjacent road for prediction. Where K is the memory length of a model. 5. Build the PST .Based on the passed road segments. 6. When the vehicle moves to road rc (rc =current road segment) at time t,and the roads it just passed are r1r2,….rk(k<K) .To predict its next road it checks PST was constructed for rc for corresponding time period . 7. If no such PST was found vehicle is fail to predict the next road. 8. If PST found it searches the next road segments with the longest suffix matching with rcr1r2………… rk and ending with rn. where rn is the one of the unidirectional adjacent road of rc. It returns the patterns with highest probability . It is useful for real time traffic conditions. 5. Conclusion As we have studied the statistical models for route prediction in previous section .For each model we have to give a trained vehicle route set as input then only we can predict the future road segment. In Simple or hidden Markov model (HMM) to predict the short-term driving route of vehicles, on the static route selection that took no dynamic traffic conditions into account. Simple Markov model is poor in capturing variable order Markov dependencies. Although HMM is capable of handling the vehicles moving patterns, training the HMM model suffers from known learn ability hardness. Where using VMM which deploys PST to generate the mobility patterns for long term route prediction, which can be applied for real time traffic conditions for predicting the future route for the driver. The table1 shows the comparative study of these three models. The above mentioned all models are having centralized approach, when traffic is so high or more vehicles are involved in it will produce the poor scalability. References Heddebaut, M., Rioult, J., Ghys, J.P., Gransart, C., and Ambellouis, S. (2005), “Broadband vehicle-to- vehicle communication using an extended autonomous cruise control sensor,” Meas. Sci. Technol., vol. 16, no. 6, pp. 1363–1373. Shulman, M. and Deering, R. (2005), “Third annual report of the crash avoidance metrics partnership April 2003–March 2004,” Nat. Highw. Traffic Safety Admin. (NHTSA), Washington, DC. DOT HS 809 837. Andreone, L., and Ricerche, C. (2005) , “Activities and applications of the vehicle to vehicle and vehicle to infrastructure communication to enhance road safety,” in Proc. 5th Eur. Congr. Exhib. ITS, Hannover, Germany. Kruger, R., Fuler, H., Torrent-Moreno, M., Transier, M., Hartenstein, H., and Effelsberg, W. (2005) ,“Statistical analysis of the FleetNet highway movement patterns,” University of Mannheim, Mannheim, Germany, Tech. Rep. TR-2005-004. 32 | P a g e www.iiste.org
  • 6. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 Guangtao Xue, Zhongwei Li, and Hongzi Zhu, (2009), “Traffic-Known Urban Vehicular Route Prediction Based on Partial Mobility Patterns”, IEEE. SAE (2008) World Congress, April-2008, USA.”A Markov Model For Driver Turn Prediction”. Ried Simmons, Brett Browning, Yilu Zhang & Varsha Sadekar, ”Learning To Predict Driver Route And destination Intent.” Shanugan, K.S and A.M. Breipohl, (1998), “Random Signals: Detection, Estimation and Data Analysis”, New York: John Willey & Sons.664. Dana Ron ,Yoram singer and Naftali Tishby(1996),”The Power of Amnesia: Learning Probabilistic Automata with Variable Memory Length. Machine Learning ”.pp117-149. Fig.1: Vehicular Ad Hoc Network Overview Table 1: Comparison of statistical models Variable Order Markov Markov Model Hidden Markov Model Model 1. It observes only fixed no. It observes Hidden states, as well It observes a variable order of random variables as fixed no. of random variables. variables not fixed. 2. Static approach Static approach Dynamic approach 3. Predict only next route Predicts next route segment Generates the sequences of segment dependent on independent on previous road road segments for prediction. previous road segment. segment. 4. It Doesn’t consider other It Consider other parameters like It Consider other parameters parameters. Time, Day, Month, Year. like Time, Day, Month, Year. 33 | P a g e www.iiste.org