summaryrefslogtreecommitdiffhomepage
path: root/filter-kalman
AgeCommit message (Collapse)Author
2018-07-08modernize onlyStanislaw Halik
2018-07-03filter/kalman: don't need operator new overload anymoreStanislaw Halik
MSVC 15.0+ supports correct alignment
2018-07-03cleanupStanislaw Halik
2018-06-26modernize C++ syntaxStanislaw Halik
No visible changes (hopefully).
2018-06-26core, modules: modernize syntax onlyStanislaw Halik
Use more C++17 features where this helps any.
2018-04-05i18n: update stringsStanislaw Halik
2018-04-05modules: now use i18nStanislaw Halik
2018-02-28logic, filter/kalman: fix typosStanislaw Halik
Tool: codespell
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-05filter/kalman: use "constexpr inline"Stanislaw Halik
2017-12-18plugins: rename check_status -> initializeStanislaw Halik
It's a contract for plugin invocation that the particular function fills the role of initialization. Rename accordingly.
2017-12-09many: use otr_tr for non-qobject translationStanislaw Halik
I haven't even compile-tested Linux and OSX-specific bits.
2017-10-29static constexpr -> constexprStanislaw Halik
2017-04-18many: use std::f{max,min} for floating-point valuesStanislaw Halik
2017-04-06logic/tracker: call IFilter::center()Stanislaw Halik
Issue: #540
2017-03-27cmake: rename project's function prefixStanislaw Halik
It's not annoying having to type it anymore. Also "otr_boilerplate" -> "otr_module".
2017-02-22filter/kalman: delete unused .ts fileStanislaw Halik
We're not doing pl_PL translation. Kill the stray file.
2017-02-21modules: add .ts filesStanislaw Halik
2017-02-18filter/kalman: fix typo in identifierStanislaw Halik
2016-11-05modules: fix some translation stuffStanislaw Halik
2016-11-05delete empty .tsStanislaw Halik
2016-11-05modules: make more strings translatableStanislaw Halik
2016-11-04modules: make names uniqueStanislaw Halik
2016-11-04modules: add autogenerated translation filesStanislaw Halik
2016-09-06filter-kalman: (parameter tuning) decreased adaption time scale; increased ↵DaMichel
deadzone size
2016-08-17move options framework into its own libraryStanislaw Halik
- adjust usages - add support for QList signals and metatype
2016-08-12all: rename modules s#^opentrack-##. and opentrack -> apiStanislaw Halik
Adjust usages.
2016-08-04filter/kalman: deadzone tweaksDaMichel
2016-08-04filter/kalman: log sliders that only change a single decimal digit at a time ↵DaMichel
when moved
2016-08-04filter/kalman: changed copyright noticeDaMichel
2016-08-02filter/kalman: deadzone adjustment and parameter tuningDaMichel
2016-08-02filter/kalman: slider resolution shall be limited by pixels on screen, not ↵DaMichel
by quantization of slider values.
2016-08-02filter/kalman: use fixed size matricesDaMichel
2016-08-02filter/kalman: fix typoStanislaw Halik
The "abs" in global namespace is an integer-only version. Use "fabs" from cmath instead.
2016-08-02filter/kalman: ensure data members are alignedStanislaw Halik
What a PITA.
2016-08-02filter/kalman: fix "static constexpr double" ODRStanislaw Halik
2016-08-02filter/kalman: remove @dbaarda's copyright from dialogStanislaw Halik
@DaMichel still needs to change to his copyright in file headers.
2016-08-02filter/kalman: find eigen in non-standard locationsStanislaw Halik
2016-08-02filter/kalman: rename header onlyStanislaw Halik
In Qt Creator I can jump between header and source if only they have the same base name.
2016-08-02kalman filter revised: noise model change, switch to Eigen3, implementedDaMichel
process noise covariance scaling adaptive KF, augmented akf with deadzone filter as second filter stage
2016-07-22oopsDaMichel
2016-07-17fix prediction error cov propagation in KFDaMichel
2016-07-16few: update/add copyrightStanislaw Halik
2016-07-10simple sim in python for playing with kalman filteringDaMichel
2016-07-08Kalman filter works with the other kind of timer.DaMichel
2016-06-16filter/kalman: disconnect from buildStanislaw Halik
It doesn't work presently.
2016-05-26many modules: trivial cleanups onlyStanislaw Halik
- Remove "this->" where it's not needed. Possibly rename shadowed vars. - Don't reload the options bundle manually since `options::opts' exists for that very reason. - Remove '^ \+$' whitespace - :retab
2016-05-22filter/kalman: don't depend on whole videoioStanislaw Halik