MtFootageData
¶
New in version R18.020.
c4d.modules.motiontracker.
MtFootageData
¶
MtFootageData.GetFootageName()
MtFootageData.GetFirstFrameNumber()
MtFootageData.GetLastFrameNumber()
MtFootageData.GetResolutionWidthPix()
MtFootageData.GetResolutionHeightPix()
MtFootageData.GetResolutionAspectRatio()
MtFootageData.GetImageAspectRatio()
MtFootageData.GetPixelAspectRatio()
MtFootageData.GetDownsamplingFactor()
MtFootageData.
GetFootageName
(
)
¶
Retrieves the filename of the footage (the first frame if an image sequence).
Return type: | str |
---|---|
Returns: | The filename. |
MtFootageData.
GetFirstFrameNumber
(
)
¶
Retrieves the frame number of the first frame in the footage. -1 if no footage loaded.
Return type: | int |
---|---|
Returns: | The first frame number. |
MtFootageData.
GetLastFrameNumber
(
)
¶
Retrieves the last number of the first frame in the footage. -1 if no footage loaded.
Return type: | int |
---|---|
Returns: | The last frame number. |
MtFootageData.
GetResolutionWidthPix
(
originalRes
)
¶
Retrieves the width in pixels of the footage.
Parameters: | originalRes ( int ) – If True , returns the original resolution of the footage. If False , returns the downsampled resolution. |
---|---|
Return type: | int |
Returns: | The width of footage in pixels. |
MtFootageData.
GetResolutionHeightPix
(
originalRes
)
¶
Retrieves the height in pixels of the footage.
Parameters: | originalRes ( int ) – If True , returns the original resolution of the footage. If False , returns the downsampled resolution. |
---|---|
Return type: | int |
Returns: | The height of footage in pixels. |
MtFootageData.
GetResolutionAspectRatio
(
)
¶
Retrieves the ratio of the horizontal to vertical resolution. Ignores pixel aspect ratio.
Return type: | float |
---|---|
Returns: | The aspect ratio from resolution. |
MtFootageData.
GetImageAspectRatio
(
)
¶
Retrieves the aspect ratio of the footage including effects of pixel aspect ratio.
Note
GetImageAspectRatio()
==
GetResolutionAspectRatio()
*
GetPixelAspectRatio()
Return type: | float |
---|---|
Returns: | The image aspect ratio. |
MtFootageData.
GetPixelAspectRatio
(
)
¶
Retrieves the pixel aspect ratio of the footage.
Return type: | float |
---|---|
Returns: | The pixel aspect ratio. |
MtFootageData.
GetDownsamplingFactor
(
)
¶
Retrieves the downsampling factor used for the footage.
Return type: | float |
---|---|
Returns: | The downsampling factor. |