Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-30 | spline: really fix moving points together | Stanislaw Halik | |
2017-04-30 | spline/widget: fix moving points close together | Stanislaw Halik | |
They disappeared and clumped together. | |||
2017-04-30 | gui: fix degree symbol in mapping window | Stanislaw Halik | |
2017-04-30 | cmake/msvc: don't warn on charset includes | Stanislaw Halik | |
They're in dependencies. | |||
2017-04-30 | filter/accela: reduce microstutter | Stanislaw Halik | |
Discussed-with: @mrsanchos | |||
2017-04-30 | spline: show tooltip in preview only mode | Stanislaw Halik | |
2017-04-30 | filter/accela: allow up to 300 ms smoothing | Stanislaw Halik | |
2017-04-29 | filter/accela: prevent overshoot with ewma | Stanislaw Halik | |
2017-04-29 | add -Wno-error where applicable | Stanislaw Halik | |
2017-04-29 | options/tie: allow for binding with a format string | Stanislaw Halik | |
2017-04-29 | filter/accela: make ewma working in 3-axis mode | Stanislaw Halik | |
2017-04-29 | filter/accela: format label text | Stanislaw Halik | |
2017-04-29 | cv, pose-widget: don't premultiply alpha | Stanislaw Halik | |
It doesn't improve perf. | |||
2017-04-29 | compat/util: add macro for memoizing values | Stanislaw Halik | |
2017-04-29 | compat/meta: add basic template metaprogramming header | Stanislaw Halik | |
2017-04-29 | compat/simple-mat: initialize like a single-dimensional array | Stanislaw Halik | |
I have no idea why this works. | |||
2017-04-29 | cmake/msvc: don't force sse2 for all projects | Stanislaw Halik | |
In particular OpenCV now branches on extensions at runtime. | |||
2017-04-29 | coverity: simplify directory structure | Stanislaw Halik | |
2017-04-20 | proto/udp: rename one more occurence | Stanislaw Halik | |
Issue: #571 | |||
2017-04-20 | i18n: mark as finished | Stanislaw Halik | |
Issue: #602 | |||
2017-04-20 | tracker/udp: update NL translation | Stanislaw Halik | |
Issue: #571 | |||
2017-04-20 | coverity: add build shell script | Stanislaw Halik | |
2017-04-20 | {proto,tracker}-udp: add migration from old names | Stanislaw Halik | |
Issue: #571 | |||
2017-04-20 | {proto,tracker}-udp: rename | Stanislaw Halik | |
Issue: #571 | |||
2017-04-20 | main: fix redundant null check | Stanislaw Halik | |
2017-04-20 | cmake: disable lto miscompiling binaries | Stanislaw Halik | |
2017-04-20 | coverity: fix build script | Stanislaw Halik | |
2017-04-20 | pose-widget: fix build | Stanislaw Halik | |
2017-04-19 | Merge pull request #602 from opentrack/translation-20170419 | Alexander Orokhovatskiy | |
Corrected some Russian-translations | |||
2017-04-19 | Corrected some Russian-translations | Alexander Orokhovatskiy | |
2017-04-18 | many: use std::f{max,min} for floating-point values | Stanislaw Halik | |
2017-04-18 | tracker/pt: revert extractor change | Stanislaw Halik | |
2017-04-18 | tracker/pt: make calibrated cross yellow | Stanislaw Halik | |
Otherwise it's not visible enough with red-only image. | |||
2017-04-18 | compat/{simple-mat,euler}: unbreak calibration | Stanislaw Halik | |
No idea what regressed. | |||
2017-04-18 | cmake: remove skip-translation-update cache var | Stanislaw Halik | |
Better way is to checkout .ts files from the current branch after running `make i18n'. | |||
2017-04-18 | tracker/pt: replace original blob center search with meanshift | Stanislaw Halik | |
The functions are almost identical so why not. I removed several bits: - weighting by squared pixel value is bad. weight by pixel value instead. - making the ROI twice as big doesn't make sense and makes for misdetected blobs. remove it. - switch radius coefficient to something doing less iterations. - sprinkle some __restrict pointer qualifier. - cv::floodfill invocation had some hardcoded flag value. - point radius circle and the bullseye line length weren't adjusted by scaling ratio. while the circle fitted the radius tightly, it was now clutter, so I removed it, leaving only the properly-scaled bullseye. - brightness had to go sadly since it's not accumulated anymore. | |||
2017-04-18 | logic/tracker: fix option not used in logic | Stanislaw Halik | |
2017-04-18 | tracker/pt: fix tab order in dialog | Stanislaw Halik | |
2017-04-18 | pose-widget: also compute alpha in the loop | Stanislaw Halik | |
2017-04-18 | pose-widget: check area for invalid denom | Stanislaw Halik | |
The denom check is a magic number otherwise. | |||
2017-04-17 | pose-widget: iterate over BGR | Stanislaw Halik | |
2017-04-17 | pose-widget: interpolate next in world coordinate space | Stanislaw Halik | |
The next value was chosen in view space. | |||
2017-04-17 | few widgets: use repaint() for no event loop overhead | Stanislaw Halik | |
The Qt event loop overhead formed a decent amount of total CPU usage. `repaint()' is a direct call. | |||
2017-04-17 | cv/video-widget, pose-widget: use premultiplied argb32 surface | Stanislaw Halik | |
2017-04-17 | api/plugin: unref inner enum | Stanislaw Halik | |
2017-04-17 | tracker/hatire: include right header | Stanislaw Halik | |
2017-04-17 | add Intel IPP licensing information | Stanislaw Halik | |
2017-04-17 | remove stale headtracker license | Stanislaw Halik | |
2017-04-17 | filter/accela: revert -180->180 fix | Stanislaw Halik | |
Does more harm than good. For 360' inertial devices, recommend other or no filter at all. Issue: #600 | |||
2017-04-14 | tracker/steamvr: use double promotion for all arithmetic | Stanislaw Halik | |
The computation order isn't defined so parts might only get promoted to double after arithmetic. Promote all parts manually before arithmetic. |