SLProject  4.2.000
A platform independent 3D computer graphics framework for desktop OS, Android, iOS and online in web browsers
CVCalibration.h File Reference
#include <CVTypedefs.h>
#include <CVTypes.h>
Include dependency graph for CVCalibration.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  CVCalibration
 Live video camera calibration class with OpenCV an OpenCV calibration. More...
 

Enumerations

enum  CVCalibState { CS_uncalibrated , CS_calibrated , CS_guessed }
 OpenCV Calibration state. More...
 

Detailed Description

Date
Winter 2016
Remarks
Please use clangformat to format the code. See more code style on https://github.com/cpvrlab/SLProject4/wiki/SLProject-Coding-Style
Authors
Michael Goettlicher, Marcus Hudritsch

Definition in file CVCalibration.h.

Enumeration Type Documentation

◆ CVCalibState

OpenCV Calibration state.

Enumerator
CS_uncalibrated 

The camera is not calibrated (no calibration found)

CS_calibrated 

The camera is calibrated.

CS_guessed 

The camera intrinsics where estimated from FOV.

Definition at line 30 of file CVCalibration.h.

31 {
32  CS_uncalibrated, //!< The camera is not calibrated (no calibration found)
33  CS_calibrated, //!< The camera is calibrated
34  CS_guessed, //!< The camera intrinsics where estimated from FOV
35 };
@ CS_calibrated
The camera is calibrated.
Definition: CVCalibration.h:33
@ CS_uncalibrated
The camera is not calibrated (no calibration found)
Definition: CVCalibration.h:32
@ CS_guessed
The camera intrinsics where estimated from FOV.
Definition: CVCalibration.h:34