Tracking: Cleanup, typos and spelling in DNA comments

This commit is contained in:
Sergey Sharybin 2020-11-23 15:25:55 +01:00
parent e4ca1fc4ea
commit 152754a477
1 changed files with 6 additions and 6 deletions

View File

@ -171,7 +171,7 @@ typedef struct MovieTrackingTrack {
/* tracking parameters */
/** Model of the motion for this track. */
short motion_model;
/** Flags for the tracking algorithm (use brute, use esm, use pyramid, etc. */
/** Flags for the tracking algorithm (use brute, use ESM, use pyramid, etc. */
int algorithm_flag;
/** Minimal correlation which is still treated as successful tracking. */
float minimum_correlation;
@ -223,7 +223,7 @@ typedef struct MovieTrackingPlaneTrack {
char name[64];
/**
* Array of point tracks used to define this pla.ne.
* Array of point tracks used to define this plane.
* Each element is a pointer to MovieTrackingTrack.
*/
MovieTrackingTrack **point_tracks;
@ -255,7 +255,7 @@ typedef struct MovieTrackingSettings {
/* ** default tracker settings */
/** Model of the motion for this track. */
short default_motion_model;
/** Flags for the tracking algorithm (use brute, use esm, use pyramid, etc. */
/** Flags for the tracking algorithm (use brute, use ESM, use pyramid, etc. */
short default_algorithm_flag;
/** Minimal correlation which is still treated as successful tracking. */
float default_minimum_correlation;
@ -365,7 +365,7 @@ typedef struct MovieTrackingObject {
/** Name of tracking object, MAX_NAME. */
char name[64];
int flag;
/** Scale of object solution in amera space. */
/** Scale of object solution in camera space. */
float scale;
/** List of tracks use to tracking this object. */
@ -562,7 +562,7 @@ enum {
REFINE_TANGENTIAL_DISTORTION = (1 << 3),
};
/* MovieTrackingStrabilization->flag */
/* MovieTrackingStabilization->flag */
enum {
TRACKING_2D_STABILIZATION = (1 << 0),
TRACKING_AUTOSCALE = (1 << 1),
@ -571,7 +571,7 @@ enum {
TRACKING_SHOW_STAB_TRACKS = (1 << 5),
};
/* MovieTrackingStrabilization->filter */
/* MovieTrackingStabilization->filter */
enum {
TRACKING_FILTER_NEAREST = 0,
TRACKING_FILTER_BILINEAR = 1,