How do you know what you're detecting?

In Unit 2, Professor Thrun says we can use the Kalman Filters to estimate another car's location and a noisy estimate of the velocity. However, that seems to be on the assumption that we know there are cars there. How do we detect objects? How do we know what it is we're detecting? And assuming we determine that there is an object and its a car, in practice how would you code the estimate for that particular object?

asked 28 Feb '12, 20:17

Matthew%20James%20Davis's gravatar image

Matthew Jame...
11014
accept rate: 0%


3 Answers:

Wild guess: On-board camera with machine learned object detection?

link

answered 28 Feb '12, 20:38

Lau%20See%20Hang's gravatar image

Lau See Hang
123

Difference in laser scan around a certain area? You will know there is an object there, and with all kinds of machine learning software, you will eventually know it's a car? And velocity can be guesstimated, abrupt acceleration or braking is always possible of course...

link

answered 28 Feb '12, 20:46

Bart%20Cools-2's gravatar image

Bart Cools-2
1.2k52034

Usually you start with an image based feature detection algorithm like the the Scale Invariant Feature Transform algorithm (SIFT) or one of its brethern (SURF,ORB,etc). Then higher level algorithms for detection and tracking of moving objects (DTMO) are built from there. Here is an example paper that touches on some of these approaches and challenges in robotics. It may give you a better idea.

link

answered 28 Feb '12, 20:52

EdG's gravatar image

EdG
6.5k3837

Your answer
Question text:

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×5,185
×26
×8

Asked: 28 Feb '12, 20:17

Seen: 153 times

Last updated: 28 Feb '12, 20:52