+ All Categories
Home > Documents > A Distributed Particle Filter Implementation for Tracking...

A Distributed Particle Filter Implementation for Tracking...

Date post: 06-Sep-2018
Category:
Upload: nguyenkien
View: 216 times
Download: 0 times
Share this document with a friend
17
A Distributed Particle Filter Implementation for Tracking in a Wireless Sensor Network Jesse Read, Katrin Achutegui, Joaqu´ ın M´ ıguez Universidad Carlos III de Madrid. July 2, 2013 J. Read, K.Achutegui, J.M´ ıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 1 / 17
Transcript

A Distributed Particle Filter Implementation for Trackingin a Wireless Sensor Network

Jesse Read, Katrin Achutegui, Joaquın Mıguez

Universidad Carlos III de Madrid.

July 2, 2013

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 1 / 17

Initially: A Particle Filter in a WSN ?

The iMote2 (≈ 13 MHz) . . .

sensing nodes J takes sensor measurements

central processing node P

J1 //P2 J3oo

J4

>>

J5

OO

J6

``

not enough processing power!

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 2 / 17

Previously: A Distributed Particle Filter in a WSN

The iMote2 (≈ 13N MHz) . . .

sensing node J takes sensor measurements

N processing nodes P

J1 //

P2

��

J3oo

~~J4

>>

//P5

OO

J6

``

oo

It worked! Tracking (a person) in an indoor scenario, accuracy of0.5m, using light sensor readings; Extremely efficient, but . . .

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 3 / 17

For N processing nodes . . .

. . . hardware is limited. We cannot do anything much more sophisticated /bigger.

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 4 / 17

Initial Conclusions

Further development is limited by

CPU / network / battery limitations; and

difficulty involved with working with TinyOS.

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 5 / 17

Solution: A Hierarchical WSN

Dedicated sensing nodes (J) – telosb, low spec

basic TinyOS sensor-program, just send sensorreadings

Dedicated processing nodes (P) – pandaboard,1.2 GHz, Linux, standard WIFI connection

ample processing, and high-bandwidthdevelopment in any language (e.g., Python)

J1 // P2

��

J3oo

J4 // P5

KS

J6oo

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 6 / 17

New Framework: Distributed Particle Filter

Each PF shares sensor observations / particles with other nodes toform a DPF

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 7 / 17

Deploying a DPF for Tracking

1 Define layout

2 Define target function

3 Define observation function

Then connect Ps to each other in a loop; algorithm begins.

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 8 / 17

1. Define Layout: layout.py

0 0.5 1 1.5 2 2.5 30

1

2

3

4

5

6

For example . . .

3.6× 7.2 metres, indoors

single light source (a window)

10 telosb motes

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 9 / 17

2. Define Target Function: target.py

How the target/particles move.

xt ∼ p(x|xt−1)

x ∈ R4 (2D position and velocity)

2.0m/s max speed, 0.1m/s min speed

change angle randomly (and at the scenario boundary)

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 10 / 17

3. Define Observation Function: observation.py

Weight each particle according to observations.

w = p(yt |xt)

binary observations yj ,t ∈ {0, 1} for each sensor j at time t

detection zone Zj : area between sensor j and light source(s)

p(yj ,t |xt) =

1− FPR if xt ∈ Zj and yj ,t = 1FPR if xt /∈ Zj and yj ,t = 11− FNR if xt /∈ Zj and yj ,t = 0FNR if xt ∈ Zj and yj ,t = 0

FPR / FNR: false positive / negative rate

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 11 / 17

A Distributed Particle Filter

N Processing Elements (PE), running in parallel, each with M particles;At each timestep t, each PE n = 1, . . . ,N:

1 receive a particle xi ,t ← x(n−1)i ,t from PE n − 1

2 read observation yt from sensors3 for all its particles m = 1, . . . ,M:

1 xm,t ∼ p(x|xm,t−1) move2 wm,t ← p(yt |xm,t) weight

4 resample particles5 i ← index of best particle (highest weight)6 send particle xi ,t to PE n + 1

1xi // 2

xi

��4

xi

OO

3xi

oo

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 12 / 17

Experimental Results

VIDEO: deploying, configuring and running a WSN for tracking

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 13 / 17

Simulation Results

Adding more sensors . . .

0 0.5 1 1.5 2 2.5 30

1

2

3

4

5

6

Now: . 0.2m accuracy; ≈ 0.05 seconds per timestep.Before: ≈ 0.5m accuracy; 1.00 seconds per timestep

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 14 / 17

Lessons Learned / Conclusions

Best ways to work with TinyOS:

1 As little as possible

It seems that . . .

1 Motes are not likely to get much more powerful; but

2 ‘PandaBoard’-type ARM boards getting popular (also, e.g.,RaspberryPI, BeagleBoard).

So, can have the best of both worlds:

benefits from distributed network

sufficient processing power

development (almost) as usual

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 15 / 17

Future Work

Fusion of observations from different kinds of sensors(light, acoustic intensity, RSSI)

Multi-target tracking

Deployment in different/larger scenarios, with a larger network

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 16 / 17

A Distributed Particle Filter Implementation for Trackingin a Wireless Sensor Network

Jesse Read, Katrin Achutegui, Joaquın Mıguez

Universidad Carlos III de Madrid.

July 2, 2013

J. Read, K.Achutegui, J.Mıguez (UC3M) A DPF for Tracking in a WSN July 2, 2013 17 / 17


Recommended