The particle-filter tag has no wiki summary.
0
votes
0answers
74 views
particle filtering importance weights
In theory, importance weight of a particle has to be a probability, i.e., w_(s_t) = p(z_t|s_t).
My question is: Since we eventually normalize the weights with their sum and get a probability ...
5
votes
0answers
88 views
Rao-Blackwellization of sequential Monte Carlo filters
In the seminal paper "Rao-Blackwellised Particle Filtering for Dynamic Bayesian Networks" by A. Doucet et. al. a sequential monte carlo filter (particle filter) is proposed, which makes use of a ...
4
votes
1answer
114 views
Using a particle filter for robot localization
I have a robot that has a GPS and velocity sensors. The GPS updates roughly every 1-2 seconds. I've been playing around with a Kalman filter that has been working pretty well. I just learned and ...
0
votes
0answers
41 views
How to track a curved object using the particle filter algorithm?
I have implemented the condensation algorithm in order to track a moving object in image streams. If the moving object is simple, the object's state can be represented only by the coordinates of the ...
1
vote
0answers
42 views
A motion model to track a moving object using the condensation algorithm
I have implemented the condensation algorithm in order to track a moving object in video sequences, however the predictive step does not work properly, so the samples moves excessively compared to the ...
1
vote
1answer
171 views
clustering with particle filters
Suppose we want to cluster a data stream of unknown number of clusters, and estimate them using particle filters. With particle filters, we need to know $P(x_t | x_{t-1})$ and $P(z_t | x_t)$ (where z ...
-2
votes
3answers
2k views
Very simple particle filters algorithm (sequential monte carlo method) implementation
I'm interested in the simple algorithm for particles filter given here. It seems very simple but I have no idea on how to do it practically. Any idea on how to implement it (just to better understand ...
2
votes
1answer
265 views
Forecasting a “chaotic” time series
Here are four graphs,
1, autocorrelation, autocovariance, partial-correlation and cross-correlation calculated from a time series are given.
2, The time series
I need to do some predictions on ...
3
votes
1answer
288 views
Maximum likelihood estimation procedures for state-space linear models
State-space models are represented by a state equation and an observation equation (or system of equations to be more precise). These equations are parametarized by components including a transition ...
0
votes
1answer
98 views
Sense of correlation coefficient matrix of particle filter's parameters
I am using a particle filter to estimate the parameters($\Phi_{n\times1}$) of a non-linear model. Say my input (observations) is $t=1:k$, I will have a vector of length $k$ for each of the parameter ...
3
votes
1answer
724 views
Particle filter in Matlab - what is going wrong?
I posted this question on Electronics.Stackexchange and someone told me I'll be better off posting it here.
Its an implementation of the Particle Filter using MATLAB but the results never follow the ...
5
votes
2answers
702 views
Estimating parameters of a dynamic linear model
I want to implement (in R) the following very simple Dynamic Linear Model for which I have 2 unknown time varying parameters (the variance of the observation error $\epsilon^1_t$ and the variance of ...
17
votes
1answer
2k views
What is the difference between a particle filter (sequential Monte Carlo) and a Kalman filter?
A particle filter and Kalman filter are both recursive Bayesian estimators. I often encounter Kalman filters in my field, but very rarely see the usage of a particle filter.
When would one be used ...