MovieTrackingTrack(bpy_struct)
base class — bpy_struct
- class bpy.types.MovieTrackingTrack(bpy_struct)
Match-moving track data for tracking
- annotation
Annotation data for this track
- Type:
- average_error
Average error of re-projection (in [-inf, inf], default 0.0, readonly)
- Type:
float
- bundle
Position of bundle reconstructed from this track (array of 3 items, in [-inf, inf], default (0.0, 0.0, 0.0), readonly)
- Type:
- color
Color of the track in the Movie Clip Editor and the 3D viewport after a solve (array of 3 items, in [0, 1], default (0.0, 0.0, 0.0))
- Type:
- correlation_min
Minimal value of correlation between matched pattern and reference that is still treated as successful tracking (in [0, 1], default 0.0)
- Type:
float
- frames_limit
Every tracking cycle, this number of frames are tracked (in [0, 32767], default 0)
- Type:
int
- has_bundle
True if track has a valid bundle (default False, readonly)
- Type:
bool
- hide
Track is hidden (default False)
- Type:
bool
- lock
Track is locked and all changes to it are disabled (default False)
- Type:
bool
- margin
Distance from image boundary at which marker stops tracking (in [0, 300], default 0)
- Type:
int
- markers
Collection of markers in track (default None, readonly)
- motion_model
Default motion model to use for tracking (default
'Loc')PerspectivePerspective – Search for markers that are perspectively deformed (homography) between frames.AffineAffine – Search for markers that are affine-deformed (t, r, k, and skew) between frames.LocRotScaleLocation, Rotation & Scale – Search for markers that are translated, rotated, and scaled between frames.LocScaleLocation & Scale – Search for markers that are translated and scaled between frames.LocRotLocation & Rotation – Search for markers that are translated and rotated between frames.LocLocation – Search for markers that are translated between frames.
- Type:
Literal[‘Perspective’, ‘Affine’, ‘LocRotScale’, ‘LocScale’, ‘LocRot’, ‘Loc’]
- name
Unique name of track (default “”, never None)
- Type:
str
- offset
Offset of track from the parenting point (array of 2 items, in [-inf, inf], default (0.0, 0.0))
- Type:
- pattern_match
Track pattern from given frame when tracking marker to next frame (default
'KEYFRAME')KEYFRAMEKeyframe – Track pattern from keyframe to next frame.PREV_FRAMEPrevious frame – Track pattern from current frame to next frame.
- Type:
Literal[‘KEYFRAME’, ‘PREV_FRAME’]
- select
Track is selected (default False)
- Type:
bool
- select_anchor
Track’s anchor point is selected (default False)
- Type:
bool
- select_pattern
Track’s pattern area is selected (default False)
- Type:
bool
- select_search
Track’s search area is selected (default False)
- Type:
bool
- use_alpha_preview
Apply track’s mask on displaying preview (default False)
- Type:
bool
- use_blue_channel
Use blue channel from footage for tracking (default True)
- Type:
bool
- use_brute
Use a brute-force translation only pre-track before refinement (default False)
- Type:
bool
- use_custom_color
Use custom color instead of theme-defined (default False)
- Type:
bool
- use_grayscale_preview
Display what the tracking algorithm sees in the preview (default False)
- Type:
bool
- use_green_channel
Use green channel from footage for tracking (default True)
- Type:
bool
- use_mask
Use a Grease Pencil data-block as a mask to use only specified areas of pattern when tracking (default False)
- Type:
bool
- use_normalization
Normalize light intensities while tracking (slower) (default False)
- Type:
bool
- use_red_channel
Use red channel from footage for tracking (default True)
- Type:
bool
- weight
Influence of this track on a final solution (in [0, 1], default 0.0)
- Type:
float
- weight_stab
Influence of this track on 2D stabilization (in [0, 1], default 0.0)
- Type:
float
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (
bpy.types.Struct| None) – The value to return when not found.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (type | None) – The value to return when not found.
- Returns:
The class or default when not found.
- Return type:
type
Inherited Properties
Inherited Functions
References
|