Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-07-20 | pose-widget: fix Qt use-after-free | Stanislaw Halik | |
Due to Qt's implicit sharing, something goes wrong when calling QImage::constBits(). It's likely related to to multithreading. Strangely enough, `constBits()' shouldn't perform a copy of the image according to Qt docs. While here, remove the "offset" defensive coding. Also, use a constant depth as to reduce confusion. | |||
2017-07-20 | tracker/pt: fix build on Linux | Stanislaw Halik | |
GNU expects ODR for `int' constexpr members. | |||
2017-07-20 | gui/main: rework forceful exit | Stanislaw Halik | |
- on MSVC, exit before destroying the window. Qt Creator plays nicer with that. - otherwise, don't perform a forceful exit. it seems unnecessary. I'll play with Valgrind some more to verify this. | |||
2017-07-18 | spline/widget: reduce needless redraws | Stanislaw Halik | |
2017-07-18 | tracker/pt: fix -Werror | Stanislaw Halik | |
2017-07-18 | pose-widget: fix build | Stanislaw Halik | |
2017-07-18 | tracker/s2bot: fix -Werror | Stanislaw Halik | |
2017-07-16 | compat/shm: reorder code | Stanislaw Halik | |
Hopefully prevent getting misdetected by an antivirus. Issue: #654 | |||
2017-07-16 | compat/math-imports: use it | Stanislaw Halik | |
2017-07-16 | tracker/s2bot: add clean i18n files | Stanislaw Halik | |
Related-to: #650 | |||
2017-07-16 | tracker/s2bot: fix qt's lrelease barfing | Stanislaw Halik | |
Files had strings from the FreePIE tracker copied. Related-to: #650 | |||
2017-07-16 | tracker/s2bot: reduce logspam | Stanislaw Halik | |
Related-to: #650 | |||
2017-07-16 | tracker/s2bot: fix dead code warning | Stanislaw Halik | |
Related-to: #650 | |||
2017-07-16 | tracker/aruco: looks like it works now | Stanislaw Halik | |
2017-07-16 | cmake: install existing i18n files when update disabled | Stanislaw Halik | |
That was never intended. | |||
2017-07-16 | cmake/msvc: annoy less | Stanislaw Halik | |
Note that .pdb doesn't break with -Oy frame pointer omission. | |||
2017-07-16 | cmake: don't cache initial translation list | Stanislaw Halik | |
2017-07-16 | compat/functional: fix template | Stanislaw Halik | |
2017-07-16 | Merge pull request #650 from achipa/s2bot | Stanisław Halik | |
S2bot :+1: | |||
2017-07-11 | documentation and attribution | attila-csipa | |
2017-07-11 | Merge branch 'unstable' into s2bot | attila-csipa | |
2017-07-11 | Merge remote-tracking branch 'upstream/unstable' into unstable | attila-csipa | |
2017-07-11 | clean up code, remove ugly file logging | Attila Csipa | |
2017-07-07 | Merge pull request #647 from achipa/unstable | Stanisław Halik | |
Unsigned cast reformat | |||
2017-07-07 | s2bot tracking | Attila Csipa | |
2017-07-07 | Merge remote-tracking branch 'upstream/unstable' into unstable | Attila Csipa | |
2017-07-07 | Merge remote-tracking branch 'upstream/unstable' into unstable | attila-csipa | |
2017-07-07 | Unsigned cast reformat | Attila Csipa | |
2017-07-07 | Unsigned cast reformat | attila-csipa | |
2017-07-07 | tracker/pt: specify dynamic pose is only for caps | Stanislaw Halik | |
Reported-by: @Len62 as https://github.com/opentrack/opentrack/issues/644#issuecomment-313649989 | |||
2017-07-07 | tracker/pt: reduce LED deadzone | Stanislaw Halik | |
It qualifies far less often now, but will likely reduce jerkiness. | |||
2017-07-07 | tracker/pt: don't return zero pose on failure | Stanislaw Halik | |
Issue: #644 | |||
2017-07-07 | filter/accela: add debug knob | Stanislaw Halik | |
2017-07-07 | proto/simconnect: fix WinSxS library versions | Stanislaw Halik | |
We had all the wrong versions assigned to comboboxen. With the correct versions, Prepar3D works with its own SimConnect redist named "SP2-XPACK". The library version is the same as SP2 and the combobox item exists only to help users. | |||
2017-07-06 | proto/simconnect: add version list for reference | Stanislaw Halik | |
Our manifests are out of what. This'll help. Provided-by: @ronh991 in <https://github.com/opentrack/opentrack/issues/627#issuecomment-311714551> | |||
2017-07-06 | logic/shortcuts: reformat etc | Stanislaw Halik | |
2017-07-06 | gui, logic: allow for binding Caps Lock and Tab | Stanislaw Halik | |
Issue: #646 | |||
2017-07-06 | wtf | Stanislaw Halik | |
2017-07-06 | options/value: try "extern template" for code size | Stanislaw Halik | |
2017-07-06 | proto/ft: include explicitly for `never_inline' etc | Stanislaw Halik | |
2017-07-06 | cv/calibrator: return distinct sample count for all DOF | Stanislaw Halik | |
2017-06-30 | compat: slightly reformat | Stanislaw Halik | |
2017-06-30 | tracker/pt: reformat lightly | Stanislaw Halik | |
2017-06-30 | pose-widget: optimize CPU usage slightly | Stanislaw Halik | |
CPU usage of an empty tracker loop fell reliably from 1% to .9%. | |||
2017-06-30 | compat: add restrict macros | Stanislaw Halik | |
2017-06-24 | cmake/platform: don't break build via -HIGHENTROPYVA | Stanislaw Halik | |
Fixes: #640 | |||
2017-06-24 | tracker/aruco: minor fixes | Stanislaw Halik | |
2017-06-24 | tracker/aruco: add experimental canny threshold ifdef | Stanislaw Halik | |
2017-06-22 | misc irrelevant | Stanislaw Halik | |
2017-06-22 | tracker/pt: replace point extraction algorithm | Stanislaw Halik | |
Profiling over a longer time period showed a bottleneck while iterating pixels with `cv::floodFill()'. Contours are actually faster, and we have MeanShift to establish the proper center basing on pixel intensities. |