summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-06-24csv, proto/ft: workaround link bug on win32 with no ltoStanislaw Halik
Need link dynamic, otherwise symbol lookup failure.
2016-06-24filter/ewma: increase max slider valStanislaw Halik
2016-06-24api/camera: fix buildStanislaw Halik
2016-06-21tracker/pt: less jerky crosses on the video feedopentrack-2.3-rc49p5Stanislaw Halik
2016-06-21filter/ewma: allow for higher smoothing curve slider valueStanislaw Halik
2016-06-21filter/ewma: update labels before they're modifiedStanislaw Halik
2016-06-21filter/ewma: change delta smoothing constant backStanislaw Halik
2016-06-21tracker/pt: adjust auto threshold max area sizeStanislaw Halik
2016-06-21tracker/pt: fix points at (0,0) which are really NaNStanislaw Halik
Issue: #318 cf. http://forum.il2sturmovik.ru/topic/2291-open-track/page-26
2016-06-21filter/ewma: add note about warmup timeStanislaw Halik
2016-06-21tracker/pt: move pi constant to headersStanislaw Halik
2016-06-20filter/ewma: cleanup, updateStanislaw Halik
- switch to our timer since it has more than millisecond precision - use slider_value for settings - sanitize allowed scaling curve bounds - ensure min <= max in dialog - ensure min <= max at filter runtime - check for NaN taking -ffast-math into account - simplify dialog logic - change delta smoothing constant
2016-06-20compat/options: inline methodStanislaw Halik
2016-06-20filter/accela: update default slider positionStanislaw Halik
It needs to filter less for new users.
2016-06-20spline-widget: move bool last to minimize paddingStanislaw Halik
2016-06-19tracker/test: test emitting NaN valuesStanislaw Halik
2016-06-19tracker/hatire: register even more signals earlieropentrack-2.3-rc49p4Stanislaw Halik
2016-06-19tracker/hatire: connect slots before thread start to prevent racesStanislaw Halik
Issue: #139
2016-06-18compat, logic, api: fix export macro copy-paste errorsStanislaw Halik
2016-06-18tracker/hatire: reduce diff to rc49p1opentrack-2.3-rc49p3Stanislaw Halik
2016-06-18api/camera-dialog: fix build on win32Stanislaw Halik
2016-06-18tracker/hatire: oops, fix build in serial modeStanislaw Halik
2016-06-18tracker/hatire: fix runtime qt threading warn in replay modeStanislaw Halik
2016-06-18tracker/hatire: saner update speed for replay from fileStanislaw Halik
2016-06-18cmake/rift: fix guardStanislaw Halik
2016-06-18api/camera-dialog: fix non non-win32 non-linuxStanislaw Halik
2016-06-18tracker/hatire: remove explicit slot conntypeStanislaw Halik
Qt will take care of its own.
2016-06-18gui/main: rename controls->trackingStanislaw Halik
Issue: #371 Suggested-by: @MathijsG
2016-06-18gui/main: rename tracker->input, protocol->outputStanislaw Halik
Discussed-with: @MathijsG, @Len62 Closes #371
2016-06-18logic/tracker: add unconditional compensation lineStanislaw Halik
The reason for its existence is that we can't rotate translation by rotation as-is. The signs are wrong and we're not using the XYZ order for Tait-Bryan either. The line location was incorrect due to mismerge.
2016-06-18proto/freetrack: rename falcon entry to BMSStanislaw Halik
FreeFalcon is gone, long live Falcon!
2016-06-18api/simple-mat: allow for casts to num* and constStanislaw Halik
Due to memory layout we don't need enable_if for vector.
2016-06-16logic/tracker: don't translation compensate twiceStanislaw Halik
It's dubious why that line was there. It needs further testing however.
2016-06-16all: split "api" into "api" and "logic"Stanislaw Halik
Here, the "logic" module has all the stuff for building one's own graphical user interface. The "api" module has stuff used by other trackers. While at it, each of "api", "logic", and "compat" need their own export headers. This is because of preprocessor symbol clashes. This is all because a change in the "gui"-only dependency required a relink of all the trackers, protocols, and flters. It takes too long when building in the release configuration. With the split, only the "gui" module gets rebuilt. Since it has close to no static dependencies, it's fast enough.
2016-06-16filter/kalman: disconnect from buildStanislaw Halik
It doesn't work presently.
2016-06-16api/tracker: appease IDE. use consistent type alias.Stanislaw Halik
2016-06-15api: remove euler filterStanislaw Halik
This isn't a proper way to handle the multiple solutions problem. Even after fixing degree/radian confusion it didn't work.
2016-06-15tracker/test: disable discontinuity on +-180Stanislaw Halik
2016-06-14cmake/mingw-w64: don't copy cflags to ldflagsStanislaw Halik
They get copied anyway.
2016-06-14cmake/mingw-w64: no need for finite math only nowStanislaw Halik
The `api/nan' compilation unit disables both fast math and finite math only.
2016-06-14proto/mouse: guard against +181 -> -179 wraparoundStanislaw Halik
Always use the shorter way around. This also adds a sensitivity param. Issue: #370
2016-06-14tracker/{aruco,pt}: disable opencv multithreadingStanislaw Halik
Less overhead this way.
2016-06-14api/tracker: add euler filterStanislaw Halik
Gimbal lock is a problem too often.
2016-06-14proto/freetrack: less noise if registry clearing disabledStanislaw Halik
2016-06-14api: this isn't C#, we don't need to set enum valsStanislaw Halik
2016-06-14api: add nan checking functionStanislaw Halik
2016-06-14compat, proto/fsuipc: fix GNU CXX 6.1.0+ buildStanislaw Halik
Include cmath explicitly
2016-06-14csv: code quality fixesStanislaw Halik
- use std::move where applicable - reformat more - make const stuff static, use QStringLiteral - fix regexes to make progress more - always move further into file even if regexes fail - apply less defensive coding, but still enough - remove stuff we don't use
2016-06-14cmake: update mingw-w64 toolchain fileStanislaw Halik
- set path for 6.1.0 from sourceforce mingw-w64 "personal builds". - set objcopy, objdump, strip - enable -fipa-pta now that it works, change some lto params - always strip for RELEASE build type - set install prefix to relative BINARY_DIR/install at first run - change some warns
2016-06-14update gitattributesStanislaw Halik