summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-12-20apply r/t compensation before mapping translation valuesStanislaw Halik
Suggested-by: @FlyingCircus- Issue: #106
2014-12-20pt: set minimum size for model tabStanislaw Halik
2014-12-20remove explicit "make install" invocationStanislaw Halik
We don't have make(1) readily available on Windows
2014-12-19tracker: fix typo breaking Z valueStanislaw Halik
Issue: #106 Yaw value was copied as Z value due to typo.
2014-12-19mat: add addition and subtraction operatorsStanislaw Halik
2014-12-19aruco: decrease thresholding paramStanislaw Halik
Failed to work on low-contrast images.
2014-12-19aruco: fix calibration sign swapStanislaw Halik
2014-12-19timer: cleanup warningStanislaw Halik
2014-12-19cmake: cleanup hardcoded path in toolchain fileStanislaw Halik
2014-12-18pt: use 2d coordinates only for d_orderStanislaw Halik
Issue: #107
2014-12-18implement camera offsetStanislaw Halik
2014-12-18const correctnessStanislaw Halik
2014-12-15pt: fix calibrationStanislaw Halik
Issue: #106 Signs were swapped.
2014-12-15pt: visualize model center as another pointStanislaw Halik
2014-12-15pt, aruco: fix calibrationStanislaw Halik
2014-12-15move rmat->euler and euler->rmat conversions to headerStanislaw Halik
2014-12-15options: emit signals only outside mutex scopeStanislaw Halik
2014-12-15pt: match input boxes with images better in dialogStanislaw Halik
2014-12-14pt: use settings frameworkStanislaw Halik
Issue: #96 Model values are recomputed every frame. This shouldn't matter, as there's very little to compute. With this change, sliders and other options are applied immediately, and the "Apply" button is gone.
2014-12-14allow tying option to tab widget's indexStanislaw Halik
2014-12-14emit "saving()" after bundle's been updatedStanislaw Halik
2014-12-14switch back to volatile bool for tracker flagsStanislaw Halik
UI thread is the only writer for the flags. Makes no sense to use more than volatile.
2014-12-14wiki updateStanislaw Halik
2014-12-14use default freepie UDP portStanislaw Halik
2014-12-14pt: set correct focal length from camera fovopentrack-2.3-rc6Stanislaw Halik
Issue: #96 Having user-supplied camera fov, we can prevent yaw and pitch occuring by itself when moving horizontally and vertically. Note PointExtractor::extract_points(Mat& frame) should enable same value for fx and fy: c[0] = (mx/m - W/2)/W; c[1] = -(my/m - H/2)/W;
2014-12-14bind socket on worker thread for thread ownershipStanislaw Halik
2014-12-08delete QLibrary, not force unload()Stanislaw Halik
Issue: #96 Reported-by: @sasam Also fixes a memory leak.
2014-12-08update tray when changing setting through UIStanislaw Halik
Issue: #104
2014-12-08ensure tray exists before minimizing to itStanislaw Halik
Issue: #104
2014-12-07accela: adjust constants for faster responseopentrack-2.3-rc5Stanislaw Halik
Tested-by: @KyokushinPL
2014-12-07credit for contributorStanislaw Halik
2014-12-06move shortcut dialog to ui moduleStanislaw Halik
2014-12-06filters: move icon to main appStanislaw Halik
2014-12-06accela: resize formStanislaw Halik
2014-12-06accela: simplifyStanislaw Halik
2014-12-03remove alphanumeric keybindings making list too longStanislaw Halik
2014-12-03pagedown works for win32 keybindingsStanislaw Halik
Reported-by: @KyokushinPL
2014-11-29implement zero shortcutStanislaw Halik
2014-11-28fit line using basic arithmeticStanislaw Halik
Issue: #98
2014-11-28don't reset coords on pauseStanislaw Halik
Issue: #99
2014-11-28pt: use 3D coordinates for distinguishing pointsStanislaw Halik
Issue: #98
2014-11-28pt: remove dead codeStanislaw Halik
2014-11-28no need ever filter translation as muchopentrack-2.3-rc4Stanislaw Halik
2014-11-28decrease multipliers from absurd valuesStanislaw Halik
2014-11-28accela: work even at zero slider positionStanislaw Halik
Issue: #96
2014-11-28move constants to headerStanislaw Halik
2014-11-28adjust smoothing alphas a bitStanislaw Halik
2014-11-28adjust thresholding after aruco_test runStanislaw Halik
Previous values increased CPU usage needlessly.
2014-11-28accela: scale up to thres exponentially, not linearlyStanislaw Halik
2014-11-27accela: rework to remove deadzone needStanislaw Halik
Tested-by: @KyokushinPL filter gain adjusted by a slider. frames smoothed by ewma for sudden noise spike reduction. likely need further work for arbitrary magic constants embedded in tracker gain.