summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt
AgeCommit message (Collapse)Author
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
2018-01-25tracker/pt: fix camera settings on tracker stopStanislaw Halik
2018-01-21tracker/wii: update according to Issue: #718 suggestion from sthalikWei Shuai
1. fix horizon line drawing 2. fix copyright 3. optimize pointer mangement 4. reduce wii led power consumption
2018-01-21tracker/pt-base: add static pt_camera_info::get_focal_lengthStanislaw Halik
For the Wiimote tracker. Adjust usages in tracker/pt. Issue: #718
2018-01-20add Wiimote supporting in point trackerWei 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-19tracker/pt: fix .qrc file locationStanislaw Halik
2018-01-19tracker/pt: fix broken resourcesStanislaw Halik
Spotted by: @cpuwolf Issue: #718
2018-01-18compat/correlation-calibration: retireStanislaw Halik
2018-01-18tracker/pt: move impl bits away from pt-baseStanislaw Halik
2018-01-18compat/util: retireStanislaw Halik
Adjust usages.
2018-01-18tracker/pt: simplify makefileStanislaw Halik
2018-01-18compat: split/cleanup util.hppStanislaw 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-18tracker/pt: split impl and algorithmStanislaw Halik
Issue: #718
2018-01-17tracker/pt: remove MSVC debug pragmaStanislaw Halik
2018-01-16cv/video-frame, tracker/pt: add hidpi preview supportStanislaw Halik
2018-01-16tracker/pt: make pt_settings header-onlyStanislaw Halik
We'd like to change the settings without linking to the tracker-pt library.
2018-01-13tracker/pt: workaround unexplained leakStanislaw 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-12tracker/pt: isolate point extractor and image typeStanislaw Halik
Issue: #718
2018-01-11tracker/pt: also pass module name to camera classStanislaw Halik
2018-01-11tracker/pt: allow for reuseStanislaw Halik
Issue: #718 This allows for replacing the camera and point extractor code. See `module.cpp' and `pt-api.hpp`.
2018-01-11tracker/pt: modernize member initializationStanislaw Halik
2018-01-10cmake: always link opencv components explicitlyStanislaw Halik
2018-01-10tracker/pt: cleanupStanislaw Halik
2018-01-10cv, tracker/{aruco,pt}: link less opencv libsStanislaw Halik
2018-01-10tracker/pt: add commentStanislaw Halik
2018-01-10tracker/pt: fix dynpose label font styleStanislaw Halik