PixelSensorConfigData
NameSpace: PixelSensors
Represents a configuration to be applied for a sensor
Public Fields
CapabilityType
The capability type this config supplies the value for
public PixelSensorCapabilityType CapabilityType { get; set; }
Type | Description |
---|---|
PixelSensorCapabilityType | The configurable capability types of a pixel sensor |
StreamIndex
The stream index this config supplies the value for
public uint StreamIndex { get; set; }
Public Methods
void ClearValues
Clear all the assigned values
public void ClearValues()
PixelSensorConfigData
Create a PixelSensorConfigData for the given capability and stream index
public PixelSensorConfigData(
PixelSensorCapabilityType capabilityType,
uint streamIndex
)
Parameters
Type | Name | Description |
---|---|---|
PixelSensorCapabilityType | capabilityType | The type of the capability this config will hold a value for |
uint | streamIndex | The stream index associated with this capability config |
Public Attributes
BoolValue
The boolean value.
public bool BoolValue;
ExposureMode
The exposure mode value
public PixelSensorAutoExposureMode ExposureMode;
Type | Description |
---|---|
PixelSensorAutoExposureMode | The exposure mode of the pixel sensor |
FloatValue
The floating point value
public float FloatValue;
FrameFormat
The frame format value
public PixelSensorFrameFormat FrameFormat;
IntValue
The integer value
public uint IntValue;
VectorValue
The vector2 value
public Vector2Int VectorValue;