Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-24 | tracker/pt: remove unused typedef | Stanislaw Halik | |
Issue: #726 | |||
2018-07-13 | appease analyzer | Stanislaw Halik | |
2018-07-09 | cleanup only | Stanislaw Halik | |
2018-07-08 | modernize only | Stanislaw Halik | |
2018-07-02 | nothing important | Stanislaw Halik | |
2018-06-26 | modernize C++ syntax | Stanislaw Halik | |
No visible changes (hopefully). | |||
2018-06-26 | tracker/pt: tmp commit | Stanislaw Halik | |
2018-06-26 | compat/macros: rename portability macros | Stanislaw Halik | |
use `cc_xx' rather than awkward synonyms. | |||
2018-06-26 | tracker/pt: remove long-dead code | Stanislaw Halik | |
2018-06-26 | tracker/{pt,aruco}: change cv::setNumThreads call site | Stanislaw Halik | |
2018-06-26 | core, modules: modernize syntax only | Stanislaw Halik | |
Use more C++17 features where this helps any. | |||
2018-06-13 | fix comments | Stanislaw Halik | |
2018-06-13 | switch to structured bindings | Stanislaw Halik | |
2018-05-28 | fix build warnings | Stanislaw Halik | |
2018-04-28 | random cleanups | Stanislaw Halik | |
2018-04-28 | fix opencv version bump | Stanislaw Halik | |
2018-04-28 | fix find_package opencv | Stanislaw Halik | |
2018-04-27 | tracker/pt: cleanup initialization | Stanislaw Halik | |
2018-04-05 | i18n: update strings | Stanislaw Halik | |
2018-04-05 | modules: now use i18n | Stanislaw Halik | |
2018-03-10 | sprinkle some `static constexpr inline' | Stanislaw Halik | |
2018-02-27 | add Chinese Lang | Wei Shuai | |
2018-02-16 | tracker/pt: add new string | Stanislaw Halik | |
2018-02-16 | tracker/wii: fix Chinese translation | Stanislaw Halik | |
The file must be in tracker-pt/ since it translates .ui file located there. Issue: #748 | |||
2018-02-16 | tracker/{pt,wii}: simplify api | Stanislaw Halik | |
Remove useless abstract member functions, simplify some. Issue: #718 | |||
2018-02-15 | clean up "static" and "constexpr" types | Stanislaw 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-12 | cmake: add zh_CN | Stanislaw Halik | |
cf. #746 | |||
2018-02-12 | modules: stop saving line information | Stanislaw Halik | |
Now i18n regen won't make a mess. | |||
2018-02-09 | update translation source files -- #743 | Stanislaw Halik | |
2018-02-05 | tracker/pt: fix warning on Linux | Stanislaw Halik | |
2018-02-05 | compat/nan: retire | Stanislaw Halik | |
It was broken for MSVC where isnan doesn't work with fast math. Fall back to `fpclassify'. Adjust usages. | |||
2018-01-26 | tracker/wii: new home | Wei Shuai | |
2018-01-26 | tracker/wii: remove useless check | Wei Shuai | |
2018-01-26 | tracker/wii: fix fov | Wei Shuai | |
2018-01-26 | CLion pedantry | Stanislaw Halik | |
Fix few of the inspection warnings from CLion that make any sense at all. | |||
2018-01-26 | opentrack/wiiyourself: new home | Wei Shuai | |
2018-01-26 | tracker/wii: subclassing TrackerDialog_PT | Wei Shuai | |
2018-01-25 | tracker/pt: expose camera settings groupbox | Stanislaw Halik | |
Issue: #718 | |||
2018-01-25 | tracker/pt: expose dialog for subclassing | Stanislaw Halik | |
Issue: #718 | |||
2018-01-25 | tracker/pt: fix camera settings on tracker stop | Stanislaw Halik | |
2018-01-21 | tracker/wii: update according to Issue: #718 suggestion from sthalik | Wei Shuai | |
1. fix horizon line drawing 2. fix copyright 3. optimize pointer mangement 4. reduce wii led power consumption | |||
2018-01-21 | tracker/pt-base: add static pt_camera_info::get_focal_length | Stanislaw Halik | |
For the Wiimote tracker. Adjust usages in tracker/pt. Issue: #718 | |||
2018-01-20 | add Wiimote supporting in point tracker | Wei Shuai | |
1. extrack point from wii frame 2. wii_camera outputs wii raw data, wii_extractor create preview 3. wiimote fov is about 42 degree 4. wii:change block functions to non-block function "contains WiiYourself! wiimote code by gl.tter http://gl.tter.org" | |||
2018-01-19 | tracker/pt: fix .qrc file location | Stanislaw Halik | |
2018-01-19 | tracker/pt: fix broken resources | Stanislaw Halik | |
Spotted by: @cpuwolf Issue: #718 | |||
2018-01-18 | compat/correlation-calibration: retire | Stanislaw Halik | |
2018-01-18 | tracker/pt: move impl bits away from pt-base | Stanislaw Halik | |
2018-01-18 | compat/util: retire | Stanislaw Halik | |
Adjust usages. | |||
2018-01-18 | tracker/pt: simplify makefile | Stanislaw Halik | |
2018-01-18 | compat: split/cleanup util.hpp | Stanislaw Halik | |
Some of the headers are clearly useless. Remove them. Move what's inside util.hpp into separate headers. Adjust usages. Will remove util.hpp. |