#define MAX_PYRAMID_LEVELS 5 // default options for optical flow #define OPFL_WINDOW_SIZE 15 #define OPFL_PYRAMID_LEVELS 3// total levels #define OPFL_WARPING_STEPS 3
// parameters specific to Lucas-Kanade typedefstruct lk_params {
int window_size;
} LK_PARAMS;
// generic structure to contain parameters for all // optical flow algorithms typedefstruct opfl_params {
int pyramid_levels;
int warping_steps;
LK_PARAMS *lk_params;
int flags;
} OPFL_PARAMS;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.