summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-07-23pose-widget: don't display when window hiddenStanislaw Halik
When the opentrack window isn't displayed (minimized or hidden by some other window), don't bother with refreshing the image.
2016-07-23pose-widget: don't do barycentric lookup twiceStanislaw Halik
In the affine transformation (aka the pose widget) of The Octopus we use barycentric coordinates of two triangles making up The Octopus rectangle. Triangles are symmetrical. Take advantage of the symmetry (no perspective transform applied) and take barycentric coordinates only once.
2016-07-23tracker/udp: adjust margins in dialogStanislaw Halik
2016-07-23gui/main: enable display scaling. move setenv PATH as own functionStanislaw Halik
2016-07-22oopsDaMichel
2016-07-20tracker/pt: change brightness formulaStanislaw Halik
Use square root of area. Otherwise very small bright points are unfairly used.
2016-07-20tracker/pt: adjust min/max radius for auto thresholdStanislaw Halik
2016-07-20tracker/pt: don't occlude point centers so muchStanislaw Halik
2016-07-20logic/tracker: doesn't make sense to apply camera offset to rotationStanislaw Halik
2016-07-20tracker/pt: fix wrong input to flood fillStanislaw Halik
The binary frame needs to be used, not grayscale. v2: Use brightness for sorting points.
2016-07-19logic, compat: remove pointless debug messagesStanislaw Halik
2016-07-19tracker/pt: reduce lockingStanislaw Halik
2016-07-19tracker/pt: check for nan before writing poseStanislaw Halik
2016-07-19move nan check to compatStanislaw Halik
2016-07-19cmake: fix libexec dir on linuxStanislaw Halik
2016-07-19proto/{ft,wine}: simplify qprocess killing logicStanislaw Halik
2016-07-19proto/wine: unbreakStanislaw Halik
2016-07-19cmake: allow only detected word size of 4 or 8Stanislaw Halik
2016-07-19cmake: install source code as wellStanislaw Halik
2016-07-19tracker/pt: round text position of displayed point radiiStanislaw Halik
2016-07-19tracker/pt: replace point extractor with original one by Patrick RuoffStanislaw Halik
The new extractor we've been using doesn't take into account brightness at all. All contours give is the ability to sort points by circularity. v2: Change the auto threshold point size range to 2->7 pixels radius. Issue: #389 v3: sort by radius instead
2016-07-19compat/options: don't copy-paste config filename retrievalStanislaw Halik
2016-07-19gui: add portable check for config writabilityStanislaw Halik
2016-07-19tracker/rift: reorder includesStanislaw Halik
2016-07-19some: replace hardcoded pi values with the same pi constantStanislaw Halik
We can't depend on M_PI existing after including cmath.
2016-07-18proto/ft: cleanup deg->rad conversionopentrack-2.3-rc49p9Stanislaw Halik
2016-07-18some: adjust install paths and invocationsStanislaw Halik
2016-07-18gui: add application path and modules subdir to PATHStanislaw Halik
Without it, win32 won't load some modules. This is probably a security feature on windows nt.
2016-07-18cmake: adjust paths for main executable dependenciesStanislaw Halik
2016-07-18cmake: install module stuff in ./modules/ on win32Stanislaw Halik
2016-07-18cmake: expose more prefixes in generated headerStanislaw Halik
2016-07-18cmake: allow for installing a dll alongside the main executableStanislaw Halik
2016-07-18csv: omg #385Stanislaw Halik
2016-07-17fix prediction error cov propagation in KFDaMichel
2016-07-16tracker/pt: don't scale down auto threshold valueStanislaw Halik
Also, make the slider signify the max point radius (hence squaring).
2016-07-16tracker/pt: use final, pragma onceStanislaw Halik
2016-07-16few: update/add copyrightStanislaw Halik
2016-07-16installer: update install subdirStanislaw Halik
2016-07-16csv: remove entry for unused Arma game IdStanislaw Halik
2016-07-16logic: make translation mapping range sensibleStanislaw Halik
2016-07-16gui: get rotation sign rightStanislaw Halik
2016-07-16freetrackclient: updateStanislaw Halik
2016-07-16filter/accela: update translation gainsStanislaw Halik
They were too staircase-like.
2016-07-16bin: recompile freetrackclient.dllStanislaw Halik
2016-07-16contrib: updateStanislaw Halik
2016-07-16cmake: simplify path with no hierStanislaw Halik
2016-07-16gui, tracker/{aruco,pt}, api: detect whether widget is visible on screenStanislaw Halik
Sadly, it's only implemented right now on win32. Remove "set enabled" code for the video widget since it only works for explicit window minimization, not covering by other windows.
2016-07-16tracker/pt: declare floating-point type size in one placeStanislaw Halik
We want double precision for POSIT. It's best for the type to be set in ope place without the need to go over everything while switching it back and forth during tests. Machine epsilon for float is very small as per <https://en.wikipedia.org/wiki/Machine_epsilon>. Also see the absurdly high epsilon of 1e-4 of POSIT that we've had. With floats, making the epsilon lower resulted in change deltas flushing to zero. This typically led to the translation Z value being very unstable in PT. After the epsilon and data type size changes the Z value is stable.
2016-07-14proto/vjoy: fix linkopentrack-2.3-rc49p8Stanislaw Halik
2016-07-14cmake: cleanup unused codeStanislaw Halik