CaptureMode
This page covers the description of the CaptureMode enumeration
CaptureMode
enumeration contains possible scanning modes.
public class CaptureMode {
public static final int AUTO = 0;
public static final int CAPTURE_VIDEO = 1;
public static final int CAPTURE_FRAME = 2;
}
Constant
Description
AUTO
The flow of frames starts to be processed right after a scenario is started
CAPTURE_VIDEO
The flow of frames starts to be processed right after the Capture button is pushed
CAPTURE_FRAME
The frame starts to be processed right after the Capture button is pushed
Last updated
Was this helpful?