Skip to main content
Version: 10 Jul 2024

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; }

TypeDescription
PixelSensorCapabilityTypeThe 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

TypeNameDescription
PixelSensorCapabilityTypecapabilityTypeThe type of the capability this config will hold a value for
uintstreamIndexThe stream index associated with this capability config

Public Attributes

BoolValue

The boolean value.


public bool BoolValue;


ExposureMode

The exposure mode value


public PixelSensorAutoExposureMode ExposureMode;

TypeDescription
PixelSensorAutoExposureModeThe 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;