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.
91 lines
2.4 KiB
91 lines
2.4 KiB
#ifdef __GNUC__ |
|
# pragma GCC diagnostic ignored "-Wmissing-declarations" |
|
# if defined __clang__ || defined __APPLE__ |
|
# pragma GCC diagnostic ignored "-Wmissing-prototypes" |
|
# pragma GCC diagnostic ignored "-Wextra" |
|
# endif |
|
#endif |
|
|
|
#ifndef __OPENCV_TEST_PRECOMP_HPP__ |
|
#define __OPENCV_TEST_PRECOMP_HPP__ |
|
|
|
#include <iostream> |
|
#include "opencv2/ts.hpp" |
|
#include "opencv2/imgproc.hpp" |
|
#include "opencv2/imgcodecs.hpp" |
|
#include "opencv2/videoio.hpp" |
|
#include "opencv2/imgproc/imgproc_c.h" |
|
|
|
#include "opencv2/core/private.hpp" |
|
|
|
#if defined(HAVE_DSHOW) || \ |
|
defined(HAVE_TYZX) || \ |
|
defined(HAVE_VFW) || \ |
|
defined(HAVE_LIBV4L) || \ |
|
(defined(HAVE_CAMV4L) && defined(HAVE_CAMV4L2)) || \ |
|
defined(HAVE_GSTREAMER) || \ |
|
defined(HAVE_DC1394_2) || \ |
|
defined(HAVE_DC1394) || \ |
|
defined(HAVE_CMU1394) || \ |
|
defined(HAVE_MIL) || \ |
|
defined(HAVE_QUICKTIME) || \ |
|
defined(HAVE_QTKIT) || \ |
|
defined(HAVE_UNICAP) || \ |
|
defined(HAVE_PVAPI) || \ |
|
defined(HAVE_OPENNI) || \ |
|
defined(HAVE_XIMEA) || \ |
|
defined(HAVE_AVFOUNDATION) || \ |
|
defined(HAVE_GIGE_API) || \ |
|
defined(HAVE_INTELPERC) || \ |
|
(0) |
|
//defined(HAVE_ANDROID_NATIVE_CAMERA) || - enable after #1193 |
|
# define BUILD_WITH_CAMERA_SUPPORT 1 |
|
#else |
|
# define BUILD_WITH_CAMERA_SUPPORT 0 |
|
#endif |
|
|
|
#if defined(HAVE_XINE) || \ |
|
defined(HAVE_GSTREAMER) || \ |
|
defined(HAVE_QUICKTIME) || \ |
|
defined(HAVE_QTKIT) || \ |
|
defined(HAVE_AVFOUNDATION) || \ |
|
/*defined(HAVE_OPENNI) || too specialized */ \ |
|
defined(HAVE_FFMPEG) || \ |
|
defined(HAVE_MSMF) |
|
# define BUILD_WITH_VIDEO_INPUT_SUPPORT 1 |
|
#else |
|
# define BUILD_WITH_VIDEO_INPUT_SUPPORT 0 |
|
#endif |
|
|
|
#if /*defined(HAVE_XINE) || */\ |
|
defined(HAVE_GSTREAMER) || \ |
|
defined(HAVE_QUICKTIME) || \ |
|
defined(HAVE_QTKIT) || \ |
|
defined(HAVE_AVFOUNDATION) || \ |
|
defined(HAVE_FFMPEG) || \ |
|
defined(HAVE_MSMF) |
|
# define BUILD_WITH_VIDEO_OUTPUT_SUPPORT 1 |
|
#else |
|
# define BUILD_WITH_VIDEO_OUTPUT_SUPPORT 0 |
|
#endif |
|
|
|
namespace cvtest |
|
{ |
|
|
|
string fourccToString(int fourcc); |
|
|
|
struct VideoFormat |
|
{ |
|
VideoFormat() { fourcc = -1; } |
|
VideoFormat(const string& _ext, int _fourcc) : ext(_ext), fourcc(_fourcc) {} |
|
bool empty() const { return ext.empty(); } |
|
|
|
string ext; |
|
int fourcc; |
|
}; |
|
|
|
extern const VideoFormat g_specific_fmt_list[]; |
|
|
|
} |
|
|
|
#endif
|
|
|