MovieTrackingStabilization(bpy_struct)
base class — bpy_struct
- class bpy.types.MovieTrackingStabilization(bpy_struct)
2D stabilization based on tracking markers
- active_rotation_track_index
Index of active track in rotation stabilization tracks list (in [-inf, inf], default 0)
- Type:
int
- active_track_index
Index of active track in translation stabilization tracks list (in [-inf, inf], default 0)
- Type:
int
- anchor_frame
Reference point to anchor stabilization (other frames will be adjusted relative to this frame’s position) (in [0, 1048574], default 0)
- Type:
int
- filter_type
Interpolation to use for sub-pixel shifts and rotations due to stabilization (default
'NEAREST')NEARESTNearest – No interpolation, use nearest neighbor pixel.BILINEARBilinear – Simple interpolation between adjacent pixels.BICUBICBicubic – High quality pixel interpolation.
- Type:
Literal[‘NEAREST’, ‘BILINEAR’, ‘BICUBIC’]
- influence_location
Influence of stabilization algorithm on footage location (in [0, 1], default 0.0)
- Type:
float
- influence_rotation
Influence of stabilization algorithm on footage rotation (in [0, 1], default 0.0)
- Type:
float
- influence_scale
Influence of stabilization algorithm on footage scale (in [0, 1], default 0.0)
- Type:
float
- rotation_tracks
Collection of tracks used for 2D stabilization (translation) (default None, readonly)
- scale_max
Limit the amount of automatic scaling (in [0, 10], default 0.0)
- Type:
float
- show_tracks_expanded
Show UI list of tracks participating in stabilization (default False)
- Type:
bool
- target_position
Known relative offset of original shot, will be subtracted (e.g. for panning shot, can be animated) (array of 2 items, in [-inf, inf], default (0.0, 0.0))
- Type:
- target_rotation
Rotation present on original shot, will be compensated (e.g. for deliberate tilting) (in [-inf, inf], default 0.0)
- Type:
float
- target_scale
Explicitly scale resulting frame to compensate zoom of original shot (in [1.192e-07, inf], default 0.0)
- Type:
float
- tracks
Collection of tracks used for 2D stabilization (translation) (default None, readonly)
- use_2d_stabilization
Use 2D stabilization for footage (default False)
- Type:
bool
- use_autoscale
Automatically scale footage to cover unfilled areas when stabilizing (default False)
- Type:
bool
- use_stabilize_rotation
Stabilize detected rotation around center of frame (default False)
- Type:
bool
- use_stabilize_scale
Compensate any scale changes relative to center of rotation (default False)
- Type:
bool
- 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