Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2018-01-18 | tracker/pt: split impl and algorithm | Stanislaw Halik | |
Issue: #718 | |||
2018-01-17 | tracker/pt: remove MSVC debug pragma | Stanislaw Halik | |
2018-01-16 | cv/video-frame, tracker/pt: add hidpi preview support | Stanislaw Halik | |
2018-01-16 | tracker/pt: make pt_settings header-only | Stanislaw Halik | |
We'd like to change the settings without linking to the tracker-pt library. | |||
2018-01-13 | tracker/pt: workaround unexplained leak | Stanislaw Halik | |
Somehow, using unique_ptr causes a leak at destruct time. The stored pointer isn't freed. It works perfectly fine with shared_ptr. It seems I'm doing things correctly with a move constructor for unique_ptr in the Tracker_PT class, as well as the pointer initialization ctor in `module.cpp'. Who the hell knows what's happening behind the scenes. | |||
2018-01-12 | tracker/pt: isolate point extractor and image type | Stanislaw Halik | |
Issue: #718 | |||
2018-01-11 | tracker/pt: also pass module name to camera class | Stanislaw Halik | |
2018-01-11 | tracker/pt: allow for reuse | Stanislaw Halik | |
Issue: #718 This allows for replacing the camera and point extractor code. See `module.cpp' and `pt-api.hpp`. | |||
2018-01-11 | tracker/pt: modernize member initialization | Stanislaw Halik | |
2018-01-10 | cmake: always link opencv components explicitly | Stanislaw Halik | |
2018-01-10 | tracker/pt: cleanup | Stanislaw Halik | |
2018-01-10 | cv, tracker/{aruco,pt}: link less opencv libs | Stanislaw Halik | |
2018-01-10 | tracker/pt: add comment | Stanislaw Halik | |
2018-01-10 | tracker/pt: fix dynpose label font style | Stanislaw Halik | |
2018-01-10 | tracker/pt: reset dynamic pose on center | Stanislaw Halik | |
2018-01-10 | many: spring cleanup | Stanislaw Halik | |
2018-01-04 | cv: fixed ps3 eye dialog | Stanislaw Halik | |
2018-01-03 | compat, tracker-pt: add unfinished calibrator | Stanislaw Halik | |
2018-01-03 | tracker/pt: more accurate dynamic threshold | Stanislaw Halik | |
2017-12-21 | tracker/pt: default to natural grayscaling | Stanislaw Halik | |
It's the most optimized opencv version. | |||
2017-12-09 | many: use otr_tr for non-qobject translation | Stanislaw Halik | |
I haven't even compile-tested Linux and OSX-specific bits. | |||
2017-12-04 | api: add status check for modules | Stanislaw Halik | |
2017-12-02 | tracker/pt: use cv::Mat::reshape() to avoid memcpy | Stanislaw Halik | |
2017-12-02 | compat/macros: rename obnoxious macro | Stanislaw Halik | |
2017-12-02 | tracker/{pt,aruco}: oops, disable multi threading right | Stanislaw Halik | |