MovieTrackingCamera(bpy_struct)
base class — bpy_struct
- class bpy.types.MovieTrackingCamera(bpy_struct)
Match-moving camera data for tracking
- brown_k1
First coefficient of fourth order Brown-Conrady radial distortion (in [-inf, inf], default 0.0)
- Type:
float
- brown_k2
Second coefficient of fourth order Brown-Conrady radial distortion (in [-inf, inf], default 0.0)
- Type:
float
- brown_k3
Third coefficient of fourth order Brown-Conrady radial distortion (in [-inf, inf], default 0.0)
- Type:
float
- brown_k4
Fourth coefficient of fourth order Brown-Conrady radial distortion (in [-inf, inf], default 0.0)
- Type:
float
- brown_p1
First coefficient of second order Brown-Conrady tangential distortion (in [-inf, inf], default 0.0)
- Type:
float
- brown_p2
Second coefficient of second order Brown-Conrady tangential distortion (in [-inf, inf], default 0.0)
- Type:
float
- distortion_model
Distortion model used for camera lenses (default
'POLYNOMIAL')POLYNOMIALPolynomial – Radial distortion model which fits common cameras.DIVISIONDivisions – Division distortion model which better represents wide-angle cameras.NUKENuke – Nuke distortion model.BROWNBrown – Brown-Conrady distortion model.
- Type:
Literal[‘POLYNOMIAL’, ‘DIVISION’, ‘NUKE’, ‘BROWN’]
- division_k1
First coefficient of second order division distortion (in [-inf, inf], default 0.0)
- Type:
float
- division_k2
Second coefficient of second order division distortion (in [-inf, inf], default 0.0)
- Type:
float
- focal_length
Camera’s focal length (in [0.0001, inf], default 0.0)
- Type:
float
- focal_length_pixels
Camera’s focal length (in [0, inf], default 0.0)
- Type:
float
- k1
First coefficient of third order polynomial radial distortion (in [-inf, inf], default 0.0)
- Type:
float
- k2
Second coefficient of third order polynomial radial distortion (in [-inf, inf], default 0.0)
- Type:
float
- k3
Third coefficient of third order polynomial radial distortion (in [-inf, inf], default 0.0)
- Type:
float
- nuke_k1
First coefficient of second order Nuke distortion (in [-inf, inf], default 0.0)
- Type:
float
- nuke_k2
Second coefficient of second order Nuke distortion (in [-inf, inf], default 0.0)
- Type:
float
- nuke_p1
First coefficient of tangential Nuke distortion (in [-inf, inf], default 0.0)
- Type:
float
- nuke_p2
Second coefficient of tangential Nuke distortion (in [-inf, inf], default 0.0)
- Type:
float
- pixel_aspect
Pixel aspect ratio (in [0.1, inf], default 1.0)
- Type:
float
- principal_point
Optical center of lens (array of 2 items, in [-1, 1], default (0.0, 0.0))
- Type:
bpy_prop_array[float]
- principal_point_pixels
Optical center of lens in pixels (array of 2 items, in [-inf, inf], default (0.0, 0.0))
- Type:
bpy_prop_array[float]
- sensor_width
Width of CCD sensor in millimeters (in [0, 500], default 0.0)
- Type:
float
- units
Units used for camera focal length (default
'PIXELS')PIXELSpx – Use pixels for units of focal length.MILLIMETERSmm – Use millimeters for units of focal length.
- Type:
Literal[‘PIXELS’, ‘MILLIMETERS’]
- 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