three.MF.V3.Descriptors.Settings.Capture
1from MF.V3.Settings.Quality import Quality as MF_V3_Settings_Quality_Quality 2 3 4class Capture: 5 6 """ 7 Capture settings descriptor. 8 """ 9 class Quality: 10 11 """ 12 Capture quality preset. 13 """ 14 def __init__(self, value: MF_V3_Settings_Quality_Quality, default: MF_V3_Settings_Quality_Quality): 15 self.value = value 16 self.default = default 17 18 class Texture: 19 20 """ 21 Capture texture. 22 """ 23 def __init__(self, value: bool, default: bool): 24 self.value = value 25 self.default = default 26 27 class BlendCount: 28 29 """ 30 Capture image blend count for noise reduction. 31 """ 32 def __init__(self, value: int, default: int, min: int, max: int): 33 self.value = value 34 self.default = default 35 self.min = min 36 self.max = max 37 38 class BlendFrequency: 39 40 """ 41 The starting frequency for which multiple capture images are blended. 42 """ 43 def __init__(self, value: int, default: int, min: int, max: int): 44 self.value = value 45 self.default = default 46 self.min = min 47 self.max = max 48 49 def __init__(self, quality: 'Quality', texture: 'Texture', blendCount: 'BlendCount', horizontalBlendFrequency: 'BlendFrequency', verticalBlendFrequency: 'BlendFrequency'): 50 # Capture quality preset. 51 self.quality = quality 52 # Capture texture. 53 self.texture = texture 54 # Capture blend count. 55 self.blendCount = blendCount 56 # Starting horizontal blend frequency. 57 self.horizontalBlendFrequency = horizontalBlendFrequency 58 # Starting vertical blend frequency. 59 self.verticalBlendFrequency = verticalBlendFrequency
class
Capture:
5class Capture: 6 7 """ 8 Capture settings descriptor. 9 """ 10 class Quality: 11 12 """ 13 Capture quality preset. 14 """ 15 def __init__(self, value: MF_V3_Settings_Quality_Quality, default: MF_V3_Settings_Quality_Quality): 16 self.value = value 17 self.default = default 18 19 class Texture: 20 21 """ 22 Capture texture. 23 """ 24 def __init__(self, value: bool, default: bool): 25 self.value = value 26 self.default = default 27 28 class BlendCount: 29 30 """ 31 Capture image blend count for noise reduction. 32 """ 33 def __init__(self, value: int, default: int, min: int, max: int): 34 self.value = value 35 self.default = default 36 self.min = min 37 self.max = max 38 39 class BlendFrequency: 40 41 """ 42 The starting frequency for which multiple capture images are blended. 43 """ 44 def __init__(self, value: int, default: int, min: int, max: int): 45 self.value = value 46 self.default = default 47 self.min = min 48 self.max = max 49 50 def __init__(self, quality: 'Quality', texture: 'Texture', blendCount: 'BlendCount', horizontalBlendFrequency: 'BlendFrequency', verticalBlendFrequency: 'BlendFrequency'): 51 # Capture quality preset. 52 self.quality = quality 53 # Capture texture. 54 self.texture = texture 55 # Capture blend count. 56 self.blendCount = blendCount 57 # Starting horizontal blend frequency. 58 self.horizontalBlendFrequency = horizontalBlendFrequency 59 # Starting vertical blend frequency. 60 self.verticalBlendFrequency = verticalBlendFrequency
Capture settings descriptor.
Capture( quality: Capture.Quality, texture: Capture.Texture, blendCount: Capture.BlendCount, horizontalBlendFrequency: Capture.BlendFrequency, verticalBlendFrequency: Capture.BlendFrequency)
50 def __init__(self, quality: 'Quality', texture: 'Texture', blendCount: 'BlendCount', horizontalBlendFrequency: 'BlendFrequency', verticalBlendFrequency: 'BlendFrequency'): 51 # Capture quality preset. 52 self.quality = quality 53 # Capture texture. 54 self.texture = texture 55 # Capture blend count. 56 self.blendCount = blendCount 57 # Starting horizontal blend frequency. 58 self.horizontalBlendFrequency = horizontalBlendFrequency 59 # Starting vertical blend frequency. 60 self.verticalBlendFrequency = verticalBlendFrequency
class
Capture.Quality:
10 class Quality: 11 12 """ 13 Capture quality preset. 14 """ 15 def __init__(self, value: MF_V3_Settings_Quality_Quality, default: MF_V3_Settings_Quality_Quality): 16 self.value = value 17 self.default = default
Capture quality preset.
class
Capture.Texture:
19 class Texture: 20 21 """ 22 Capture texture. 23 """ 24 def __init__(self, value: bool, default: bool): 25 self.value = value 26 self.default = default
Capture texture.
class
Capture.BlendCount:
28 class BlendCount: 29 30 """ 31 Capture image blend count for noise reduction. 32 """ 33 def __init__(self, value: int, default: int, min: int, max: int): 34 self.value = value 35 self.default = default 36 self.min = min 37 self.max = max
Capture image blend count for noise reduction.
class
Capture.BlendFrequency:
39 class BlendFrequency: 40 41 """ 42 The starting frequency for which multiple capture images are blended. 43 """ 44 def __init__(self, value: int, default: int, min: int, max: int): 45 self.value = value 46 self.default = default 47 self.min = min 48 self.max = max
The starting frequency for which multiple capture images are blended.