Class VideoCaptureDeviceAdjustRanges
- Namespace
- VisioForge.Core.Types.VideoCapture
- Assembly
- VisioForge.Core.dll
Represents the adjustment ranges and capabilities for video capture device properties.
public class VideoCaptureDeviceAdjustRangesInheritance
Inherited Members
Remarks
This class defines the valid range of values for adjustable properties on video capture devices, such as brightness, contrast, saturation, and other video processing parameters. It provides information about the minimum and maximum allowed values, the default value, the step size for adjustments, and whether automatic control is available for the property.
Properties
Auto
Gets or sets a value indicating whether automatic control is available for this property.
public bool Auto { get; set; }Property Value
Remarks
When automatic control is enabled, the device will dynamically adjust the property based on current conditions (e.g., auto-brightness based on lighting conditions).
Default
Gets or sets the default value for the property.
public int Default { get; set; }Property Value
Max
Gets or sets the maximum allowed value for the property.
public int Max { get; set; }Property Value
Min
Gets or sets the minimum allowed value for the property.
public int Min { get; set; }Property Value
Step
Gets or sets the step size for property adjustments.
public int Step { get; set; }