summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt
AgeCommit message (Collapse)Author
2018-10-25cleanup onlyStanislaw Halik
- replace warn_unused_result with [[nodiscard]] - remove some redundant w_a_r - replace std::decay with remove_cvref_t - simplify compat/math.hpp
2018-10-12tracker/pt: add more robust camera retryStanislaw Halik
Some cameras can't produce frames right after the capture is opened. Adjust the delay to something more sane. It has a strange effect of not crashing PS3 Eye as often, but that needs more testing (and crashes).
2018-10-12logic/pipeline: cleanup onlyStanislaw Halik
2018-10-12pt/settings: make header-onlyStanislaw Halik
2018-10-05cv/tcal: don't count separate roll as sampleStanislaw Halik
2018-10-05tracker/pt: dynpose default to offStanislaw Halik
2018-10-05silly busyworkStanislaw Halik
2018-08-04tracker/pt: fix center with dynamic pose setStanislaw Halik
It was necessary to center _twice_ in order to reset dynamic pose. Put a spinlock around the code.
2018-08-03tracker/pt: add green only harderStanislaw Halik
Issue: #808
2018-08-03tracker/pt: add authorship info for meanshift codeStanislaw Halik
2018-08-03tracker/pt: extract green channel only as user optionStanislaw Halik
Issue: #808 Requested-by: @DanTDBV
2018-07-24tracker/pt: remove unused typedefStanislaw Halik
Issue: #726
2018-07-13appease analyzerStanislaw Halik
2018-07-09cleanup onlyStanislaw Halik
2018-07-08modernize onlyStanislaw Halik
2018-07-02nothing importantStanislaw Halik
2018-06-26modernize C++ syntaxStanislaw Halik
No visible changes (hopefully).
2018-06-26tracker/pt: tmp commitStanislaw Halik
2018-06-26compat/macros: rename portability macrosStanislaw Halik
use `cc_xx' rather than awkward synonyms.
2018-06-26tracker/pt: remove long-dead codeStanislaw Halik
2018-06-26tracker/{pt,aruco}: change cv::setNumThreads call siteStanislaw Halik
2018-06-26core, modules: modernize syntax onlyStanislaw Halik
Use more C++17 features where this helps any.
2018-06-13fix commentsStanislaw Halik
2018-06-13switch to structured bindingsStanislaw Halik
2018-05-28fix build warningsStanislaw Halik
2018-04-28random cleanupsStanislaw Halik
2018-04-28fix opencv version bumpStanislaw Halik
2018-04-28fix find_package opencvStanislaw Halik
2018-04-27tracker/pt: cleanup initializationStanislaw Halik
2018-04-05i18n: update stringsStanislaw Halik
2018-04-05modules: now use i18nStanislaw Halik
2018-03-10sprinkle some `static constexpr inline'Stanislaw Halik
2018-02-27add Chinese LangWei Shuai
2018-02-16tracker/pt: add new stringStanislaw Halik
2018-02-16tracker/wii: fix Chinese translationStanislaw Halik
The file must be in tracker-pt/ since it translates .ui file located there. Issue: #748
2018-02-16tracker/{pt,wii}: simplify apiStanislaw Halik
Remove useless abstract member functions, simplify some. Issue: #718
2018-02-15clean up "static" and "constexpr" typesStanislaw Halik
- use `static constexpr inline' to avoid requiring explicit declarations in object code - use `const Foo* const' to maybe put into readonly binary segment (at least for ELF DSOs) - `constexpr' in function scope has storage, avoid `static' - don't use `constexpr' where there's no advantage, like arrays We'd like to avoid overhead of atomic initialization for each function call. No idea how `static constexpr' requiring storage in the standard plays with atomic initialization requirement. Hearsay points that `constexpr' without `static' in block scope behaves more to our liking. It's all hazy though. I'm not 100% sure if `static inline constexpr' has any storage. Hopefully none, like a #define, and stuff bigger than registers gets coalesced within the same module, with small stuff being immediates.
2018-02-12cmake: add zh_CNStanislaw Halik
cf. #746
2018-02-12modules: stop saving line informationStanislaw Halik
Now i18n regen won't make a mess.
2018-02-09update translation source files -- #743Stanislaw Halik
2018-02-05tracker/pt: fix warning on LinuxStanislaw Halik
2018-02-05compat/nan: retireStanislaw Halik
It was broken for MSVC where isnan doesn't work with fast math. Fall back to `fpclassify'. Adjust usages.
2018-01-26tracker/wii: new homeWei Shuai
2018-01-26tracker/wii: remove useless checkWei Shuai
2018-01-26tracker/wii: fix fovWei Shuai
2018-01-26CLion pedantryStanislaw Halik
Fix few of the inspection warnings from CLion that make any sense at all.
2018-01-26opentrack/wiiyourself: new homeWei Shuai
2018-01-26tracker/wii: subclassing TrackerDialog_PTWei Shuai
2018-01-25tracker/pt: expose camera settings groupboxStanislaw Halik
Issue: #718
2018-01-25tracker/pt: expose dialog for subclassingStanislaw Halik
Issue: #718