Paparazzi UAS
v5.8.2_stable-0-g6260b7c
Paparazzi is a free software Unmanned Aircraft System.
|
efficient fixed-point optical-flow calculation More...
Go to the source code of this file.
Functions | |
struct flow_t * | opticFlowLK (struct image_t *new_img, struct image_t *old_img, struct point_t *points, uint16_t *points_cnt, uint16_t half_window_size, uint16_t subpixel_factor, uint8_t max_iterations, uint8_t step_threshold, uint16_t max_points) |
Compute the optical flow of several points using the Lucas-Kanade algorithm by Yves Bouguet The initial fixed-point implementation is doen by G. More... | |
efficient fixed-point optical-flow calculation
Definition in file lucas_kanade.h.
struct flow_t* opticFlowLK | ( | struct image_t * | new_img, |
struct image_t * | old_img, | ||
struct point_t * | points, | ||
uint16_t * | points_cnt, | ||
uint16_t | half_window_size, | ||
uint16_t | subpixel_factor, | ||
uint8_t | max_iterations, | ||
uint8_t | step_threshold, | ||
uint16_t | max_points | ||
) |
Compute the optical flow of several points using the Lucas-Kanade algorithm by Yves Bouguet The initial fixed-point implementation is doen by G.
de Croon and is adapted by Freek van Tienen for the implementation in Paparazzi.
[in] | *new_img | The newest grayscale image (TODO: fix YUV422 support) |
[in] | *old_img | The old grayscale image (TODO: fix YUV422 support) |
[in] | *points | Points to start tracking from |
[in,out] | points_cnt | The amount of points and it returns the amount of points tracked |
[in] | half_window_size | Half the window size (in both x and y direction) to search inside |
[in] | subpixel_factor | The subpixel factor which calculations should be based on |
[in] | max_iterations | Maximum amount of iterations to find the new point |
[in] | step_threshold | The threshold at which the iterations should stop |
[in] | max_points | The maximum amount of points to track, we skip x points and then take a point. |
Definition at line 53 of file lucas_kanade.c.
References FALSE, flow_t::flow_x, flow_t::flow_y, image_t::h, image_calculate_g(), image_create(), image_difference(), image_free(), IMAGE_GRADIENT, image_gradients(), IMAGE_GRAYSCALE, image_multiply(), image_subpixel_window(), p, flow_t::pos, TRUE, image_t::w, point_t::x, and point_t::y.
Referenced by opticflow_calc_frame().