Table of Contents

Class CCDDataMessage

Namespace
NominalSystems.Messages
Assembly
NominalSystems.Messages.dll

[Nominal] Message describing Charge Coupled Device (CCD) raw sensed data from the sensor.


public sealed class CCDDataMessage : Message
Inheritance
CCDDataMessage

Fields

Contrast

The contrast of the CCD sensor, calculated as the difference between the mean signal and mean noise divided by the sum of the mean signal and mean noise.

[Unit(UnitType.NONE)]
public double Contrast

Field Value

double

Data

The final data array from the CCD sensor.

[Unit("ADU")]
public int[] Data

Field Value

int[]

MaxSignal

The maximum signal of the CCD sensor.

[Unit("ADU")]
public double MaxSignal

Field Value

double

MeanNoise

The mean noise of the CCD sensor.

[Unit("ADU")]
public int MeanNoise

Field Value

int

MeanSignal

The mean signal of the CCD sensor.

[Unit("ADU")]
public int MeanSignal

Field Value

int

Resolution

The resolution is the number of pixels in the CCD sensor.

[Unit("px")]
public int Resolution

Field Value

int

SignalToNoise

The signal to noise of the CCD sensor, with the bias of the sensor already subtracted.

[Unit(UnitType.DECIBEL)]
public double SignalToNoise

Field Value

double

TotalSignal

The total signal of the CCD sensor, which is the sum of all the pixel values.

[Unit("ADU")]
public int TotalSignal

Field Value

int