Click or drag to resize

Frame2DImageBGRA Method

Get the associated 2D color image in 8-bit BGRA format

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

Return Value

Type: ImageBGRA
The 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. 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. 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