Skip to content

Latest commit

 

History

History
executable file
·
65 lines (48 loc) · 1.31 KB

README.md

File metadata and controls

executable file
·
65 lines (48 loc) · 1.31 KB

Optical flow - Lucas Kanade - Horn & Schunck

Optical flow using Lucas Kanade and Horn & Schunck methods

👨‍🎓 This project was carried out during my master's degree in computer vision at URJC - Madrid

Goals

  • Find the optical flow with Lucas Kanade method
  • Find the optical flow with Horn & Schunck method

Requirements

  • Matlab
More explanations in docs/explanations_esp.pdf (only in spanish)

Usage

Just run main_lucaskanade.m or main_horn_schunk.m in matlab

Example

Example 1

Example 2

Example 3

Structure

.
├── data
│    └── *.jpg
├── docs
│    └── explanations_esp.pdf
├── imgs
│    ├── Ex_1.png
│    ├── Ex_2.png
│    └── Ex_3.png
├── README.md
└── src
    ├── choose_image.m
    ├── get_derivatives.m
    ├── main_horn_schunk.m
    └── main_lucaskanade.m

Authors