32 #ifndef OPTICFLOW_CALCULATOR_H
33 #define OPTICFLOW_CALCULATOR_H
uint16_t fast9_min_distance
Minimum distance in pixels between corners.
uint8_t max_iterations
The maximum amount of iterations the Lucas Kanade algorithm should do.
struct opticflow_t opticflow
Opticflow calculations.
uint16_t window_size
Window size for the blockmatching algorithm (general value for all methods)
uint16_t fast9_rsize
Amount of corners allocated.
Capture images from a V4L2 device (Video for Linux 2)
bool median_filter
Decides to use a median filter on the velocity.
void calc_edgeflow_tot(struct opticflow_t *opticflow, struct opticflow_state_t *state, struct image_t *img, struct opticflow_result_t *result)
Run the optical flow with EDGEFLOW on a new image frame.
Inter-thread data structures.
uint8_t threshold_vec
The threshold in x, y subpixels which the algorithm should stop.
bool derotation
Derotation switched on or off (depended on the quality of the gyroscope measurement) ...
uint8_t method
Method to use to calculate the optical flow.
uint8_t max_track_corners
Maximum amount of corners Lucas Kanade should track.
void opticflow_calc_init(struct opticflow_t *opticflow, uint16_t w, uint16_t h)
Initialize the opticflow calculator.
Image helper functions like resizing, color filter, converters...
uint16_t subpixel_factor
The amount of subpixels per pixel.
struct point_t * fast9_ret_corners
Corners.
struct timeval prev_timestamp
Timestamp of the previous frame, used for FPS calculation.
struct image_t prev_img_gray
Previous gray image frame.
void opticflow_calc_frame(struct opticflow_t *opticflow, struct opticflow_state_t *state, struct image_t *img, struct opticflow_result_t *result)
Run the optical flow on a new image frame.
uint8_t fast9_threshold
FAST9 corner detection threshold.
bool just_switched_method
struct image_t img_gray
Current gray image frame.
bool got_first_img
If we got a image to work with.
void calc_fast9_lukas_kanade(struct opticflow_t *opticflow, struct opticflow_state_t *state, struct image_t *img, struct opticflow_result_t *result)
Run the optical flow with fast9 and lukaskanade on a new image frame.
uint16_t fast9_padding
Padding used in FAST9 detector.
bool fast9_adaptive
Whether the FAST9 threshold should be adaptive.
struct FloatRates prev_rates
Gyro Rates from the previous image frame.
uint8_t pyramid_level
Number of pyramid levels used in Lucas Kanade algorithm (0 == no pyramids used)
uint16_t search_distance
Search distance for blockmatching alg.