three.MF.V3.Descriptors.VideoFrame
1from MF.V3.Descriptors.Calibration import DetectedCard as MF_V3_Descriptors_Calibration_DetectedCard 2from MF.V3.Settings.Video import Video as MF_V3_Settings_Video_Video 3 4 5class VideoFrame: 6 7 """ 8 Video frame descriptor. 9 """ 10 def __init__(self, codec: MF_V3_Settings_Video_Video.Codec, format: MF_V3_Settings_Video_Video.Format, width: int, height: int, step: int, number: int, timestamp: int, duration: int, calibrationCard: MF_V3_Descriptors_Calibration_DetectedCard): 11 # Video codec. 12 self.codec = codec 13 # Pixel format. 14 self.format = format 15 # Image width. 16 self.width = width 17 # Image height. 18 self.height = height 19 # Image row step in bytes. 20 self.step = step 21 # Frame number. 22 self.number = number 23 # Frame timestamp. 24 self.timestamp = timestamp 25 # Frame duration. 26 self.duration = duration 27 # Calibration card detection. 28 self.calibrationCard = calibrationCard
class
VideoFrame:
6class VideoFrame: 7 8 """ 9 Video frame descriptor. 10 """ 11 def __init__(self, codec: MF_V3_Settings_Video_Video.Codec, format: MF_V3_Settings_Video_Video.Format, width: int, height: int, step: int, number: int, timestamp: int, duration: int, calibrationCard: MF_V3_Descriptors_Calibration_DetectedCard): 12 # Video codec. 13 self.codec = codec 14 # Pixel format. 15 self.format = format 16 # Image width. 17 self.width = width 18 # Image height. 19 self.height = height 20 # Image row step in bytes. 21 self.step = step 22 # Frame number. 23 self.number = number 24 # Frame timestamp. 25 self.timestamp = timestamp 26 # Frame duration. 27 self.duration = duration 28 # Calibration card detection. 29 self.calibrationCard = calibrationCard
Video frame descriptor.
VideoFrame( codec: MF.V3.Settings.Video.Video.Codec, format: MF.V3.Settings.Video.Video.Format, width: int, height: int, step: int, number: int, timestamp: int, duration: int, calibrationCard: MF.V3.Descriptors.Calibration.DetectedCard)
11 def __init__(self, codec: MF_V3_Settings_Video_Video.Codec, format: MF_V3_Settings_Video_Video.Format, width: int, height: int, step: int, number: int, timestamp: int, duration: int, calibrationCard: MF_V3_Descriptors_Calibration_DetectedCard): 12 # Video codec. 13 self.codec = codec 14 # Pixel format. 15 self.format = format 16 # Image width. 17 self.width = width 18 # Image height. 19 self.height = height 20 # Image row step in bytes. 21 self.step = step 22 # Frame number. 23 self.number = number 24 # Frame timestamp. 25 self.timestamp = timestamp 26 # Frame duration. 27 self.duration = duration 28 # Calibration card detection. 29 self.calibrationCard = calibrationCard