Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-03 | try fix MSVC | Stanislaw Halik | |
2015-07-03 | accela: start with zero gain | Stanislaw Halik | |
2015-07-03 | Merge pull request #178 from sbabbi/unstable | Stanislaw Halik | |
Small improvements to the x-plane plugin | |||
2015-07-02 | Fixed bug crash if dlopen fails | Ennio Barbaro | |
2015-07-02 | Reinit the offsets when re-enabling the plugin | Ennio Barbaro | |
2015-07-02 | Added enable/disable plugin command. | Ennio Barbaro | |
2015-07-02 | Use XPLMRegisterFlightLoopCallback instead of XPLMRegisterDrawCallback | Ennio Barbaro | |
2015-07-01 | pt: show color frame in widget | Stanislaw Halik | |
2015-07-01 | pt: fix sqrt eps | Stanislaw Halik | |
2015-07-01 | pt: use iterative contour detector | Stanislaw Halik | |
2015-07-01 | freetrack: use volatile | Stanislaw Halik | |
2015-07-01 | cmake: adjust install perms | Stanislaw Halik | |
2015-07-01 | qfc: always draw line to last point | Stanislaw Halik | |
2015-07-01 | qfc: adapt step size to bound | Stanislaw Halik | |
2015-07-01 | accela: use spline mapper for gain | Stanislaw Halik | |
2015-06-19 | pt: extractor algorithm based on OpenCV's SimpleBlobDetector | Stanislaw Halik | |
Tunables are probably wrong, we'll get to that later. | |||
2015-06-19 | pt: remove hysteresis | Stanislaw Halik | |
No one used it, and we have a better solution for stable extraction, pending commit. | |||
2015-06-18 | nix stderr spam | Stanislaw Halik | |
2015-06-18 | Revert "options: add support for QRadioButton" | Stanislaw Halik | |
This reverts commit 21f6b1c681ca6efe4511486994264b8d8c8d9463. | |||
2015-06-18 | options: return default value after revert, not type's default value | Stanislaw Halik | |
Issue: #173 | |||
2015-06-18 | cmake: switch LTO off | Stanislaw Halik | |
It emits broken binaries on trackhat branch. If it's so easy to break let's not use it. | |||
2015-06-18 | cmake: add toolchain debug version | Stanislaw Halik | |
2015-06-18 | forgot #pragma once, add headers | Stanislaw Halik | |
2015-06-16 | simple-mat: allow pitch axis go -180->180 | Stanislaw Halik | |
To be reverted if broken | |||
2015-06-16 | pt: try simple method of point extraction | Stanislaw Halik | |
To be reverted if broken | |||
2015-06-16 | pt: include opencv headers only when necessary | Stanislaw Halik | |
Settings header can't have it since it's included in ui in trackhat branch | |||
2015-06-16 | options: add support for QRadioButton | Stanislaw Halik | |
2015-06-16 | pt: rename for consistency with trackhat | Stanislaw Halik | |
We're going to merge to trackhat often so let's not introduce needless conflicts. PT headers need to be include-able. | |||
2015-06-15 | octopus: simplify vector math | Stanislaw Halik | |
Also rename identifiers for clarity. | |||
2015-06-15 | cmake: now able to build with IPA with minor changes | Stanislaw Halik | |
For OpenCV videoio/cap_dshow.cpp, deactivate LTO for just that file. Either with cmake or #pragma. Otherwise opening the camera causes a crash in DShow machinery. LibOVR build without LTO completely as there are some duplicate symbol errors. Other than that, LTO build seems to work fine. | |||
2015-06-15 | aruco: check retval of solvepnp and more sanity checks | Stanislaw Halik | |
2015-06-15 | ui: allow for up to +-180 values in camera ypr, for easier debugging | Stanislaw Halik | |
2015-06-15 | cmake: adjust vjoy.dll/sixense.dll permissions to avoid EACCES on loading on ↵ | Stanislaw Halik | |
win32 | |||
2015-06-15 | cmake: nix stderr spam on older version | Stanislaw Halik | |
2015-06-12 | cmake: more opt flags | Stanislaw Halik | |
2015-06-12 | cmake: no -fipa-pta workaround needed, compiler fix is known | Stanislaw Halik | |
See <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66488> | |||
2015-06-10 | pt: issue with duplicate symbols on including dshow.h in two files | Stanislaw Halik | |
Let's work around it by including dshow.h in only one file | |||
2015-06-10 | accela: minor tweak | Stanislaw Halik | |
2015-06-10 | temporarily disable -fipa-pta for aruco | Stanislaw Halik | |
There's a GCC crash bug so let's turn it off until it's fixed | |||
2015-06-10 | for an optimized build we need gcc-{ar,nm,ranlib} | Stanislaw Halik | |
2015-06-10 | pass GNU ld arguments as GNU-LINK keyword | Stanislaw Halik | |
Don't switch if toolchain is GNU at call sites, conditionalize for opentrack_library macro | |||
2015-06-10 | cmake: link sixense dynamically for hydra | Stanislaw Halik | |
Previously, .dll was included anyway despite static link. There's a binutils 2.25 bug breaking linking against that sixense.lib, and binutils HEAD has LTO breakage instead. We don't need sixense_utils so remove that from build. | |||
2015-06-09 | ht doesn't need opencv | Stanislaw Halik | |
2015-06-09 | cmake: fix old typo | Stanislaw Halik | |
2015-06-09 | pt: nix include | Stanislaw Halik | |
2015-06-09 | cmake: remove too many flags, lto linker plugin doesn't work | Stanislaw Halik | |
2015-06-09 | cmake: reduce verbosity | Stanislaw Halik | |
2015-06-07 | Fix Linux build | Stanislaw Halik | |
2015-06-07 | ui: if dialog window exists, raise it, don't destroy and recreate | Stanislaw Halik | |
2015-06-07 | plugin-support: make header-only, expose as public API | Stanislaw Halik | |
Issue: #151 Some global namespace macros are now prefixed with "OPENTRACK_" to avoid namespace clashes. This header is now safe to include in third-party projects. |