Click or drag to resize

ColorRGBA Structure

Color with 8-bit red, green, blue and alpha channels

Namespace:  Zivid.NET
Assembly:  ZividCoreNET (in ZividCoreNET.dll) Version: 0.0.0.0
Syntax
public struct ColorRGBA

The ColorRGBA type exposes the following members.

Fields
  NameDescription
Public fielda
Public fieldb
Public fieldg
Public fieldr
Top
Remarks
The order of the members is r, g, b, a, and each member is represented as an uint8_t. The members have values from 0 to 255. This type differs from ColorBGRA only in the order of the channels (RGBA vs. BGRA). This format holds linear color values, which are suitable as input to computer vision algorithms. For showing colors on a display for viewing, consider using the ColorSRGB format.
See Also