summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-07-23logic/work: move from headerStanislaw Halik
2016-07-23gui/options, logic: add experimental offset from centerStanislaw Halik
This works fine for rotating the translation.
2016-07-23logic/tracker: cleanupStanislaw Halik
2016-07-23gui: snap by one degree for rotation axis in spline widgetStanislaw Halik
2016-07-23spline-widget: round upward resulting positionStanislaw Halik
2016-07-23logic, api: switch euler to use euler_t input. adjust usages.Stanislaw Halik
2016-07-23api/simple-mat: don't use a temporary arrayStanislaw Halik
2016-07-23gui: don't try to force "windowsxp" styleStanislaw Halik
2016-07-23api/is-window-visible: move from headerStanislaw Halik
2016-07-23tracker/{aruco,pt}: draw the whole image rectangleStanislaw Halik
This fixes forced hidpi
2016-07-23tracker/{aruco,pt}: only check window visibility once every two secondsStanislaw Halik
The check is becoming more expensive with more positions checked.
2016-07-23api/is-window-visible: check for more window positionsStanislaw Halik
Having the window center invisible making the feed not refresh is confusing. Also check for all the corners.
2016-07-23logic/tracker: users report camera offset for rotation is goodStanislaw Halik
Requested-by: @WF000, white_fang on bms forum Issue: #392
2016-07-23pose-widget: use common code for euler -> rmatStanislaw Halik
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