Click or drag to resize

Frame2DImageSRGB Method

Get the associated 2D color image in the sRGB color space in 8-bit RGBA format

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

Return Value

Type: ImageSRGB
The associated 2D color image
Remarks
The format of the image will be four channels (R,G,B,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