mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
250 B
11 lines
250 B
14 years ago
|
#ifndef CAMERA_PROPERTIES_H
|
||
|
#define CAMERA_PROPERTIES_H
|
||
|
|
||
|
enum {
|
||
|
ANDROID_CAMERA_PROPERTY_FRAMEWIDTH = 0,
|
||
|
ANDROID_CAMERA_PROPERTY_FRAMEHEIGHT = 1,
|
||
|
ANDROID_CAMERA_PROPERTY_SUPPORTED_PREVIEW_SIZES_STRING = 2
|
||
|
};
|
||
|
|
||
|
#endif // CAMERA_PROPERTIES_H
|