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
305 B
11 lines
305 B
#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, |
|
ANDROID_CAMERA_PROPERTY_PREVIEW_FORMAT_STRING = 3 |
|
}; |
|
|
|
#endif // CAMERA_PROPERTIES_H
|
|
|