1 / 13

Determining Moving Objects from Forward Motion Video

Determining Moving Objects from Forward Motion Video. Nick Hirsch: Progress Report. Overview of the Technique. Track features from frame to frame using KLT Calculate their optical flow. Determine Focus of Expansion The center that all other points seem to expand from when moving forward.

velika
Download Presentation

Determining Moving Objects from Forward Motion Video

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Determining Moving Objects from Forward Motion Video Nick Hirsch: Progress Report

  2. Overview of the Technique • Track features from frame to frame using KLT • Calculate their optical flow. • Determine Focus of Expansion • The center that all other points seem to expand from when moving forward. • Determine which points aren’t expanding outward from the Focus of Expansion. Track Features (KLT) Calculate Optical Flow Update FoE Compare to FoE Direction Field

  3. Stationary Objects Expand Outward As you can see, the pixels belonging to stationary objects move along the lines emanating from the FoE.

  4. Pixels belonging to moving objects often don’t expand outward • Green Arrows = Moving • Red Arrows = Stationary

  5. Recent Progress • Jan Prokaj handed his code over to me. • Attempted to reproduce Jan’s results. • His algorithm relies on the video being jitter free. • His estimate of the Focus of Expansion was highly inaccurate.

  6. Jan’s Results: Noisy calculation of the Focus of Expansion using the Fundamental Matrix Blue Square – Current estimate of Focus of Expansion Yellow Square – Smoothed estimate of Focus of Expansion

  7. Alternate Methods for Determining Focus of Expansion From Optical Flow Vectors • We can assume most objects in the given video are stationary and their pixels expand outwards from the FoE. • To find the true FoE(yellow) given the optical flow vectors(black), start with a hypothesized FoE(green), generate some neighbor FoEs, calculate their energy, and update the hypothesis FoE.

  8. Minimizing an Energy Function • We assume all pixels should be traveling radially outward from the Focus of Expansion. • To calculate an updated FoE, we want to minimize the SSD of the direction that feature Fi should be traveling.

  9. The Energy Function • wi – The magnitude of the feature point I • I use this weight because features with larger magnitudes are often more accurate. • ThetaFoE,i – The direction of the FoE field at i • Thetai – The direction of the feature point

  10. Yet Another Method for Finding FoE • Another way to find the FoE is to try to solve for the intersecting point of all the optical flow vectors. • To do this, I convert the optical flow vectors into homogenous lines, creating an Nx3 matrix, then I perform the Singular Value Decomposition on it. The resulting right vector of the Nx3 matrix gives me the point where the lines all intersect.

  11. Improved estimate of the FoE by Combining both methods

  12. An Example Containing More Noise

  13. Further Areas to Improve Upon • To further improve my estimation of the FoE, I’m going to use RANSAC to weed out the outliers amongst the optical flow vectors. • Next, I’d like to determine a good method for clustering vectors classified as moving.

More Related