diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2014-10-27 07:49:08 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2014-10-27 07:49:08 +0100 |
commit | 56a78f48547081a1b20977596d842dadb710210e (patch) | |
tree | 22a682bb70ee6f3108f53ccca6d417b40026b036 /ftnoir_tracker_pt/camera.h | |
parent | 48a8485317a90687e51419fe32c512cd1ebb2943 (diff) |
pt: remove manual camera rotation declaration
We do it in core. And if we don't, we have to!
Issue: #63
Diffstat (limited to 'ftnoir_tracker_pt/camera.h')
-rw-r--r-- | ftnoir_tracker_pt/camera.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/ftnoir_tracker_pt/camera.h b/ftnoir_tracker_pt/camera.h index 889bf2d3..2bce6f35 100644 --- a/ftnoir_tracker_pt/camera.h +++ b/ftnoir_tracker_pt/camera.h @@ -5,8 +5,7 @@ * copyright notice and this permission notice appear in all copies. */ -#ifndef CAMERA_H -#define CAMERA_H +#pragma once #include <opencv2/core/core.hpp> #ifndef OPENTRACK_API @@ -128,14 +127,3 @@ enum RotationType ZERO = 1, COUNTER_CLOCKWISE = 2 }; - -// ---------------------------------------------------------------------------- -class FrameRotation -{ -public: - RotationType rotation; - - cv::Mat rotate_frame(cv::Mat frame); -}; - -#endif //CAMERA_H |