From dec625e51878c9167100837086f82fb0f78b0189 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 5 Sep 2016 20:31:01 +0200 Subject: tracker/{aruco,pt}: remove camera settings button It's broken and users complain on the issue tracker. Also fix tab stops. --- tracker-aruco/aruco-trackercontrols.ui | 81 +++++++++++++++++++--------------- tracker-aruco/ftnoir_tracker_aruco.cpp | 6 --- tracker-aruco/ftnoir_tracker_aruco.h | 7 ++- 3 files changed, 48 insertions(+), 46 deletions(-) (limited to 'tracker-aruco') diff --git a/tracker-aruco/aruco-trackercontrols.ui b/tracker-aruco/aruco-trackercontrols.ui index 807fa909..ed1c1edf 100644 --- a/tracker-aruco/aruco-trackercontrols.ui +++ b/tracker-aruco/aruco-trackercontrols.ui @@ -10,7 +10,7 @@ 0 0 485 - 202 + 180 @@ -40,6 +40,20 @@ + + + + Camera name + + + + + + + Resolution + + + @@ -70,27 +84,6 @@ - - - - Camera name - - - - - - - Resolution - - - - - - - Diagonal FOV - - - @@ -131,6 +124,13 @@ + + + + Diagonal FOV + + + @@ -141,20 +141,6 @@ - - - - Camera settings - - - - - - - Open - - - @@ -174,6 +160,19 @@ + + + + Qt::Vertical + + + + 20 + 0 + + + + @@ -264,6 +263,16 @@ + + cameraFOV + cameraFPS + cameraName + resolution + cx + cy + cz + btn_calibrate + diff --git a/tracker-aruco/ftnoir_tracker_aruco.cpp b/tracker-aruco/ftnoir_tracker_aruco.cpp index 4fc5405f..d59ac9be 100644 --- a/tracker-aruco/ftnoir_tracker_aruco.cpp +++ b/tracker-aruco/ftnoir_tracker_aruco.cpp @@ -426,7 +426,6 @@ TrackerControls::TrackerControls() connect(ui.btn_calibrate, SIGNAL(clicked()), this, SLOT(toggleCalibrate())); connect(this, SIGNAL(destroyed()), this, SLOT(cleanupCalib())); connect(&calib_timer, SIGNAL(timeout()), this, SLOT(update_tracker_calibration())); - connect(ui.camera_settings, SIGNAL(clicked()), this, SLOT(camera_settings())); } void TrackerControls::toggleCalibrate() @@ -478,9 +477,4 @@ void TrackerControls::doCancel() close(); } -void TrackerControls::camera_settings() -{ - open_camera_settings(tracker ? &tracker->camera : nullptr, s.camera_name, tracker ? &tracker->camera_mtx : nullptr); -} - OPENTRACK_DECLARE_TRACKER(Tracker, TrackerControls, TrackerDll) diff --git a/tracker-aruco/ftnoir_tracker_aruco.h b/tracker-aruco/ftnoir_tracker_aruco.h index 1dd08cb1..101060f7 100644 --- a/tracker-aruco/ftnoir_tracker_aruco.h +++ b/tracker-aruco/ftnoir_tracker_aruco.h @@ -11,11 +11,11 @@ #include "api/plugin-api.hpp" #include "include/markerdetector.h" -#include "cv/camera-dialog.hpp" #include "cv/video-widget.hpp" #include "cv/translation-calibrator.hpp" -#include +#include +#include #include #include @@ -106,7 +106,7 @@ private: static constexpr double alpha_ = .95; }; -class TrackerControls : public ITrackerDialog, protected camera_dialog +class TrackerControls : public ITrackerDialog { Q_OBJECT public: @@ -125,7 +125,6 @@ private slots: void toggleCalibrate(); void cleanupCalib(); void update_tracker_calibration(); - void camera_settings(); }; class TrackerDll : public Metadata -- cgit v1.2.3