| Webcam Library Reference Documentation | ![]() |
#include <Common/include/webcam.h>
Each frame interval is described as a fraction of a second.
Data Fields | |
| CFrameIntervalTypes | type |
| Type of the frame interval(s) described (discrete, continuous, step-wise). | |
| union { | |
| struct { | |
| unsigned int n | |
| Numerator of the frame interval. | |
| unsigned int d | |
| Denominator of the frame interval. | |
| } | |
| Discrete frame interval. | |
| struct { | |
| unsigned int min_n | |
| Numerator of the minimum frame interval. | |
| unsigned int min_d | |
| Denominator of the minimum frame interval. | |
| unsigned int max_n | |
| Numerator of the maximum frame interval. | |
| unsigned int max_d | |
| Denominator of the maximum frame interval. | |
| unsigned int step_n | |
| Numerator of the frame interval step size (usually 1 if type is CF_INTERVAL_CONTINUOUS. | |
| unsigned int step_d | |
| Denominator of the frame interval step size (usually 1 if type is CF_INTERVAL_CONTINUOUS. | |
| } | |
| Continuous or step-wise frame interval. | |
| }; | |