Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-30 | logic/track-logger: add virtual dtor to parent class | Stanislaw Halik | |
It's defined out-of-line so that vtable is emitted only once. | |||
2016-07-30 | cmake: disable lto partitions for mingw | Stanislaw Halik | |
It affects generated code. | |||
2016-07-30 | cmake: align functions to 16-byte boundary | Stanislaw Halik | |
Helps on recent i7. | |||
2016-07-30 | filter/accela: add rotation nonlinearity switch | Stanislaw Halik | |
This only applies to very beginning of gain spline. | |||
2016-07-30 | gui/main: fix qt style palette | Stanislaw Halik | |
Only changing style after QApplication's been defined sets the palette. | |||
2016-07-30 | cmake: define M_PI and friends on mingw-w64 | Stanislaw Halik | |
2016-07-30 | Merge pull request #398 from DaMichel/logging | DaMichel | |
Track Logging | |||
2016-07-29 | logging: file selection dialog can freeze. Therefore don't use native dialog?! | DaMichel | |
2016-07-29 | logger: it is definitely nicer to not have things all over the place | DaMichel | |
2016-07-29 | track logging: why not write proper csv with COMMA separated lists! Also ↵ | DaMichel | |
write proper header. | |||
2016-07-29 | new track logging: record poses in various stages of processing into a file | DaMichel | |
2016-07-25 | tracker/pt: drop signed/unsigned warning | Stanislaw Halik | |
2016-07-25 | logic/tracker: fix compensation for real this time | Stanislaw Halik | |
2016-07-25 | gui: fix settings window margin for real this time | Stanislaw Halik | |
2016-07-25 | cmake: cleanup unused var | Stanislaw Halik | |
2016-07-25 | logic/{simple-mat,tracker}: fix translation compensation signs | Stanislaw Halik | |
They didn't match between rotation and translation again. | |||
2016-07-25 | tracker/pt: fix dynamic pose | Stanislaw Halik | |
Issue: #386 | |||
2016-07-25 | logic, pose-widget: fix following simple-mat move | Stanislaw Halik | |
2016-07-25 | cmake/mingw-w64: default lto gzip -9 lto stream files | Stanislaw Halik | |
Highly loaded drive slows down build otherwise. | |||
2016-07-25 | api/simple-mat: move to logic | Stanislaw Halik | |
Change causes rebuilds of all modules otherwise. | |||
2016-07-25 | api/simple-mat: use correct rmat -> euler formula | Stanislaw Halik | |
2016-07-24 | cmake, qt: add qt.conf to try fix hidpi | Stanislaw Halik | |
User confirms dpiawareness=0 fixes hidpi. | |||
2016-07-23 | gui/options: adjust widget spacing | Stanislaw Halik | |
2016-07-23 | logic/tracker: fix translation compensation | Stanislaw Halik | |
2016-07-23 | logic/tracker: fix typo | Stanislaw Halik | |
2016-07-23 | logic/work: move from header | Stanislaw Halik | |
2016-07-23 | gui/options, logic: add experimental offset from center | Stanislaw Halik | |
This works fine for rotating the translation. | |||
2016-07-23 | logic/tracker: cleanup | Stanislaw Halik | |
2016-07-23 | gui: snap by one degree for rotation axis in spline widget | Stanislaw Halik | |
2016-07-23 | spline-widget: round upward resulting position | Stanislaw Halik | |
2016-07-23 | logic, api: switch euler to use euler_t input. adjust usages. | Stanislaw Halik | |
2016-07-23 | api/simple-mat: don't use a temporary array | Stanislaw Halik | |
2016-07-23 | gui: don't try to force "windowsxp" style | Stanislaw Halik | |
2016-07-23 | api/is-window-visible: move from header | Stanislaw Halik | |
2016-07-23 | tracker/{aruco,pt}: draw the whole image rectangle | Stanislaw Halik | |
This fixes forced hidpi | |||
2016-07-23 | tracker/{aruco,pt}: only check window visibility once every two seconds | Stanislaw Halik | |
The check is becoming more expensive with more positions checked. | |||
2016-07-23 | api/is-window-visible: check for more window positions | Stanislaw Halik | |
Having the window center invisible making the feed not refresh is confusing. Also check for all the corners. | |||
2016-07-23 | logic/tracker: users report camera offset for rotation is good | Stanislaw Halik | |
Requested-by: @WF000, white_fang on bms forum Issue: #392 | |||
2016-07-23 | pose-widget: use common code for euler -> rmat | Stanislaw Halik | |
2016-07-23 | pose-widget: don't display when window hidden | Stanislaw Halik | |
When the opentrack window isn't displayed (minimized or hidden by some other window), don't bother with refreshing the image. | |||
2016-07-23 | pose-widget: don't do barycentric lookup twice | Stanislaw 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-23 | tracker/udp: adjust margins in dialog | Stanislaw Halik | |
2016-07-23 | gui/main: enable display scaling. move setenv PATH as own function | Stanislaw Halik | |
2016-07-22 | oops | DaMichel | |
2016-07-20 | tracker/pt: change brightness formula | Stanislaw Halik | |
Use square root of area. Otherwise very small bright points are unfairly used. | |||
2016-07-20 | tracker/pt: adjust min/max radius for auto threshold | Stanislaw Halik | |
2016-07-20 | tracker/pt: don't occlude point centers so much | Stanislaw Halik | |
2016-07-20 | logic/tracker: doesn't make sense to apply camera offset to rotation | Stanislaw Halik | |
2016-07-20 | tracker/pt: fix wrong input to flood fill | Stanislaw Halik | |
The binary frame needs to be used, not grayscale. v2: Use brightness for sorting points. | |||
2016-07-19 | logic, compat: remove pointless debug messages | Stanislaw Halik | |