SLProject  4.2.000
A platform independent 3D computer graphics framework for desktop OS, Android, iOS and online in web browsers
CVCapture.h File Reference
#include <SL.h>
#include <CVTypedefs.h>
#include <CVImage.h>
#include <Averaged.h>
#include <opencv2/opencv.hpp>
#include <CVCamera.h>
#include <HighResTimer.h>
Include dependency graph for CVCapture.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  CVCapture
 Encapsulation of the OpenCV Capture Device and holder of the last frame. More...
 

Enumerations

enum  CVVideoType { VT_NONE = 0 , VT_MAIN = 1 , VT_SCND = 2 , VT_FILE = 3 }
 Video type if multiple exist on mobile devices. More...
 

Enumeration Type Documentation

◆ CVVideoType

Video type if multiple exist on mobile devices.

Enumerator
VT_NONE 

No camera needed.

VT_MAIN 

Main camera on all on all all devices.

VT_SCND 

Selfie camera on mobile devices.

VT_FILE 

Loads a video from file with OpenCV.

Definition at line 39 of file CVCapture.h.

40 {
41  VT_NONE = 0, //!< No camera needed
42  VT_MAIN = 1, //!< Main camera on all on all all devices
43  VT_SCND = 2, //!< Selfie camera on mobile devices
44  VT_FILE = 3, //!< Loads a video from file with OpenCV
45 };
@ VT_SCND
Selfie camera on mobile devices.
Definition: CVCapture.h:43
@ VT_FILE
Loads a video from file with OpenCV.
Definition: CVCapture.h:44
@ VT_NONE
No camera needed.
Definition: CVCapture.h:41
@ VT_MAIN
Main camera on all on all all devices.
Definition: CVCapture.h:42