1 / 11

Week 1 Report Ruben Villegas

Week 1 Report Ruben Villegas. Lucas- Kanade Optical Flow. Problems I had Getting used to Matlab Ax = fx(i -1: i +1, j -1: j +1) I f matrix Ax = [1 2 3; 4 5 6; 7 8 9], Ax(:) == [1 4 7 2 5 8 3 6 9]. Solution Ax = fx (i-1:i+1;j-1:j+1)’, where

mimis
Télécharger la présentation

Week 1 Report Ruben Villegas

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. Week 1 ReportRuben Villegas

  2. Lucas-Kanade Optical Flow • Problems I had • Getting used to Matlab • Ax = fx(i-1:i+1,j-1:j+1) • If matrix Ax = [1 2 3; 4 5 6; 7 8 9], Ax(:) == [1 4 7 2 5 8 3 6 9]. • Solution Ax = fx(i-1:i+1;j-1:j+1)’, where Ax = [1 4 7, 2 5 8, 3 6 9], and A(:) == [1 2 3 4 5 6 7 8 9] • pinvvsinv for U  (A’A )-1A’ft

  3. Functions Implemented • opticalFlow • Takes 2 images and outputs an optical flow image. • opticalFlow2 • Failed attempt to implement pyramids. • Ft calculation problems. • opticalFlow3 • Takes a sequence and outputs a video of the optical flow of that video

  4. LK Optical Flow

  5. LK Optical Flow with Pyramids?

  6. SIFT Descriptor • Problems I had • Figure out how to use 3-Dimensional Matrixes • Split 16x16 matrixes into 4x4 • uint8 underflow? • m(y-1,x-1) = sqrt(double((im(y+1,x)-im(y-1,x))^2+(im(y,x+1)-im(y,x-1))^2)) • Solution, conver im to double beforehand.

More Related