TIOVX User Guide
|
The raw image create params structure that is given to the tivxCreateRawImage function. More...
#include <tivx_ext_raw_image.h>
Data Fields | |
volatile vx_uint32 | width |
The image width in pixels. | |
volatile vx_uint32 | height |
The image height in lines (not including meta rows). | |
volatile vx_uint32 | num_exposures |
The number of exposures contained in the sensor readout for a given timestamp. Max supported is TIVX_RAW_IMAGE_MAX_EXPOSURES. | |
volatile vx_bool | line_interleaved |
A value of vx_true_e indicates that the exposures are line interleaved in a single contiguous buffer. | |
tivx_raw_image_format_t | format [TIVX_RAW_IMAGE_MAX_EXPOSURES] |
Array of tivx_raw_image_format_t structures indicating the pixel packing and bit alignment format of each exposure. If line_interleaved == vx_false_e, then the number of valid structures in this array should be equal to the value of num_exposures. If line_interleaved == vx_true_e, then the format should be the same for each exposure in a single buffer, so the number of valid structures in this array should equal 1. | |
volatile vx_uint32 | meta_height_before |
Number of lines of meta data at top of sensor readout (before pixel data) (uses the same width as original sensor readout width) | |
volatile vx_uint32 | meta_height_after |
Number of lines of meta data at bottom of sensor readout (after pixel data) (uses the same width as original sensor readout width) | |
The raw image create params structure that is given to the tivxCreateRawImage function.
Definition at line 117 of file tivx_ext_raw_image.h.