diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2014-09-22 23:37:08 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2014-09-22 23:37:08 +0200 |
commit | fbf579e102af6eb178d9b4b07f0e1e3956985e56 (patch) | |
tree | 9d3d5ac85fa56ab1e36d19afe587250b5c264ce1 /ftnoir_tracker_pt/camera.cpp | |
parent | 25d9ab287523961df97355da9728c9d3adf946bc (diff) |
fixup! fixup! PT tracker feature removal
Some PT features got under the knife:
- dynamic pose resolution velocity prediction model
- tracker dialog's tracker tab
- focal length coefficient
Diffstat (limited to 'ftnoir_tracker_pt/camera.cpp')
-rw-r--r-- | ftnoir_tracker_pt/camera.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ftnoir_tracker_pt/camera.cpp b/ftnoir_tracker_pt/camera.cpp index 686e1b9b..74b24093 100644 --- a/ftnoir_tracker_pt/camera.cpp +++ b/ftnoir_tracker_pt/camera.cpp @@ -108,14 +108,6 @@ void Camera::set_device_index(int index) } } -void Camera::set_f(float f) -{ - if (cam_desired.f != f) - { - cam_desired.f = f; - _set_f(); - } -} void Camera::set_fps(int fps) { if (cam_desired.fps != fps) @@ -201,11 +193,6 @@ void CVCamera::_set_index() if (active) restart(); } -void CVCamera::_set_f() -{ - cam_info.f = cam_desired.f; -} - void CVCamera::_set_fps() { if (cap) cap->set(CV_CAP_PROP_FPS, cam_desired.fps); |