jonysy / miro

A modern computer vision platform.
7 stars 1 forks source link

Add image pyramid structure #16

Open jonysy opened 7 years ago

jonysy commented 7 years ago

The current pyramidal implementation of the Lucas-Kanade tracker doesn't accept image pyramids. Implementing Flow<Pyramid> for PyramLucasKanade would allow for precomputed image pyramids.

[pub] [type | struct] ImagePyramid<I = GrayImage> [= Vec<I>; | { images: Vec<I>, orientation: .. }]

impl Flow<ImagePyramid> for PyramLucasKanade { .. }