S
S
Salavat Sitdikov2013-01-26 12:17:39
Algorithms
Salavat Sitdikov, 2013-01-26 12:17:39

How can you determine locations in a room?

I asked myself: how can you determine the location of a person in a room? I receive data from 4 sources - cameras in the corners of the room.
In the direction of which algorithms would you recommend to look, so that you can determine the location almost in real time.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Sergey, 2013-01-26
@zona7o

there are a lot of algorithms for tracking objects. If a person is in the room, then movement is implied.
I advise you to look towards Optical Flow (there are several implementations in OpenCV, the most popular of them is the lucas kanade algorithm).
Also, since the camera is static, you can simply subtract the background (background substitution, foreground mask). In the OpenCV examples, you will find implementations of both approaches. There are a lot of articles, etc.
I think this is enough.

X
xmoonlight, 2013-01-26
@xmoonlight

1. Apply the Edge Extraction ( Kenny ) algorithm and subtract the steady state (when no one is in the frame) from the fluctuations (when there is someone in the frame).
2. Take the contours of closed areas and build a displacement vector.
Everything is simple!

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question