This project depends on Eigen
and openCV
.
Eigen
is included.
openCV
is used only for debug. If you use DO_NOT_TEST=ON
or DO_NOT_USE_OPENCV=ON
flags while configuring cmake, you don't need to install openCV
.
I wrote these codes while working at viuron. This repository is public version of the codes.
Thanks to JunHyok Kong for helps while debugging and understanding Lucas-Kanade.
used doxygen
.
To generate documentation, go to doc
and
doxygen doxy.conf
0/0---X--->
|
|
Y
|
|
v
(x, y, 1)
The way accessing value in eigen is (row, column)
but in calculating image, the way is (column, row, 1)
.