Frame2DImageBGRA_SRGB Method |
Get the associated 2D color image in the sRGB color space in 8-bit BGRA format
Namespace:
Zivid.NET
Assembly:
ZividCoreNET (in ZividCoreNET.dll) Version: 2.15.0.0
Syntaxpublic ImageBGRA_SRGB ImageBGRA_SRGB()
Public Function ImageBGRA_SRGB As ImageBGRA_SRGB
public:
ImageBGRA_SRGB^ ImageBGRA_SRGB()
Return Value
Type:
ImageBGRA_SRGBThe associated 2D color image
Remarks
The format of the image will be four channels (B,G,R,A), with 8 bits
per channel. The image can be converted to an array using
ToArray or
ToByteArray.
The sRGB color space is suitable for showing an image on a display for human viewing. It is easier to
see details in darker areas of an image in sRGB than in linear RGB, as more of the dynamic range
is dedicated to darker colors. This format is assumed by default by most monitors and should be used when
displaying an image.
If the image is not yet available because the capture is still in-progress, then this method will
block until the image is available.
See Also