.. _doxcsid-class_p1_1_1_image_sdk_1_1_sensor_bayer_output: SensorBayerOutput Class ~~~~~~~~~~~~~~~~~~~~~~~ Definition ^^^^^^^^^^ *Namespace:* ``P1.ImageSdk`` A :ref:`BitmapImage ` that represents Bayer (raw) sensor output, and therefore includes non-visible pixels :ref:`More...` .. ref-code-block:: csharp :class: doxyrest-overview-code-block public class SensorBayerOutput : :ref:`P1::ImageSdk::BitmapBase` .. _csdetails-class_p1_1_1_image_sdk_1_1_sensor_bayer_output: Remarks ^^^^^^^ A :ref:`BitmapImage ` that represents Bayer (raw) sensor output, and therefore includes non-visible pixels This class represents image data, where there might exist a border of non-illuminated (non exposed) pixels, around the edges of the RAW image. Image sensors might use such area to store sensor specific data and configurations. This class includes a property to extract the active (exposed) image area from the pixel data. Properties ^^^^^^^^^^ .. toctree:: :hidden: ActiveArea FullWidth FullHeight .. list-table:: :widths: 30 70 * - :ref:`ActiveArea ` - Defines the offset and dimension of the area of the exposed pixels in the RAW image * - :ref:`FullWidth ` - The full width of the sensor output, including non-exposed area * - :ref:`FullHeight ` - The full height of the sensor output, including non-exposed area Methods ^^^^^^^ .. toctree:: :hidden: GainAndOffset Transform Transform .. list-table:: :widths: 33 67 * - :ref:`GainAndOffset(MutableBitmapImage\< float > gainImage, MutableBitmapImage\< float > offsetImage) ` - Pixel wise gain and offset: image = image \* gainImage + offsetImage * - :ref:`Transform(float a, float b, float c, int axis) ` - Transform image by second order polynomial: I = I \* (a\*X\*X + b\*X + c) * - :ref:`Transform(float ax, float bx, float cx, float ay, float by, float cy) ` - Transform image by second order polynomial: I = I \* (ax\*X\*X + bx\*X + cx) \* (ay\*Y\*Y + by\*Y + cy)