vision: Fix missing includes/declarations

This commit is contained in:
Sam Edwards 2018-11-03 22:40:13 -06:00
parent 5ac3cf3fc6
commit b5bf6cd73c
3 changed files with 12 additions and 1 deletions

View File

@ -11,12 +11,17 @@
* @date 2010-10-20
*/
#include "webcamVideoOpenCV.h"
#include "webcamVideoCursorOpenCV.h"
#ifdef HAVE_OPENCV
#include "webcamVideoOpenCV.h"
#include "movieVideoCursor.h"
#include "pStatTimer.h"
#include <opencv2/highgui/highgui.hpp>
TypeHandle WebcamVideoCursorOpenCV::_type_handle;
/**

View File

@ -22,6 +22,7 @@
#include "movieVideoCursor.h"
class WebcamVideoOpenCV;
struct CvCapture;
/**
* The Video4Linux implementation of webcams.

View File

@ -11,8 +11,13 @@
* @date 2010-06-11
*/
#include "webcamVideoCursorV4L.h"
#include "config_vision.h"
#include "webcamVideoV4L.h"
#include "movieVideoCursor.h"
#if defined(HAVE_VIDEO4LINUX) && !defined(CPPPARSER)
#include <fcntl.h>