| Webcam Library Reference Documentation | ![]() |
#include <Common/include/webcam.h>
Data Fields | |
| CFrameSizeTypes | type |
| Type of the frame size(s) described (discrete, continuous, step-wise). | |
| union { | |
| struct { | |
| unsigned int width | |
| Width. | |
| unsigned int height | |
| Height. | |
| } | |
| Discrete frame size. | |
| struct { | |
| unsigned int min_width | |
| Minimum width. | |
| unsigned int max_width | |
| Maximum width. | |
| unsigned int step_width | |
| Step size for the width (usually 1 if type is CF_SIZE_CONTINUOUS). | |
| unsigned int min_height | |
| Minimum height. | |
| unsigned int max_height | |
| Maximum height. | |
| unsigned int step_height | |
| Step size for the height (usually 1 if type is CF_SIZE_CONTINUOUS). | |
| } | |
| Continuous or step-wise frame size. | |
| }; | |