mirror of
https://gitcode.com/gh_mirrors/es/esp32-opencv.git
synced 2025-08-15 03:01:04 +08:00
initial commit
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
#include <iostream>
|
||||
|
||||
#include <opencv2/core.hpp>
|
||||
|
||||
#include <opencv2/imgcodecs/legacy/constants_c.h>
|
||||
#include <opencv2/videoio/legacy/constants_c.h>
|
||||
#include <opencv2/photo/legacy/constants_c.h>
|
||||
#include <opencv2/video/legacy/constants_c.h>
|
||||
|
||||
using namespace cv;
|
||||
|
||||
int main(int /*argc*/, const char** /*argv*/)
|
||||
{
|
||||
std::cout
|
||||
<< (int)CV_LOAD_IMAGE_GRAYSCALE
|
||||
<< (int)CV_CAP_FFMPEG
|
||||
<< std::endl;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user