Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-08-18 | simple-mat: replace initializer_list with variadic ctor | Stanislaw Halik | |
Gives us type safety rather than argument count mismatch. Also there's no more narrowing conversion issue. Replace usages. Explicitly delete initializer_list ctor. | |||
2015-08-18 | pt, aruco: another take at focal length formula | Stanislaw Halik | |
Aspect ratio is meant to be viewport's ratio, not diagonal to axis. | |||
2015-08-18 | simple-mat: __inline -> inline for C++ | Stanislaw Halik | |
2015-08-18 | simple-mat: don't inline so much | Stanislaw Halik | |
2015-08-14 | reformat | Stanislaw Halik | |
2015-08-14 | run basename on Linux process detector | Stanislaw Halik | |
2015-08-14 | fix Linux game detection code | Stanislaw Halik | |
Issue: #181 | |||
2015-08-13 | fixed process detector for OSX | Stanislaw Halik | |
Issue: #181 | |||
2015-08-13 | initial broken multi-platform process lister | Stanislaw Halik | |
2015-08-13 | fsuipc: add comment | Stanislaw Halik | |
2015-08-13 | cmake: actually fix msvc subsystem to support xp | Stanislaw Halik | |
2015-08-13 | cmake: remove obsolete hack | Stanislaw Halik | |
2015-08-13 | pose-widget: const nonsense | Stanislaw Halik | |
2015-08-13 | tracker: no need to run logic() at all | Stanislaw Halik | |
2015-08-13 | tracker: use concise syntax for vector access | Stanislaw Halik | |
2015-08-13 | update mingw-w64 cmake toolchain file | Stanislaw Halik | |
2015-08-11 | qfc: type mismatch | Stanislaw Halik | |
2015-08-11 | qfc: add comment | Stanislaw Halik | |
2015-08-11 | tracker-udp: prevent read past end of buffer | Stanislaw Halik | |
Can happen with incorrect .ini values. | |||
2015-08-11 | simple-mat: open-code more, add comment | Stanislaw Halik | |
2015-08-11 | pose-widget: we no longer warn on narrowing conversions | Stanislaw Halik | |
2015-08-11 | pose-widget: don't pollute global namespace | Stanislaw Halik | |
2015-08-11 | pose-widget: use floats | Stanislaw Halik | |
2015-08-11 | simple-mat: open-code operator()(x, y) calls | Stanislaw Halik | |
2015-08-09 | main: apply center pose after compensation | Stanislaw Halik | |
Issue: #212 | |||
2015-08-09 | main: remap axis before mapping | Stanislaw Halik | |
Issue: #213 | |||
2015-08-07 | aruco: try otsu for one frame if regular fails | Stanislaw Halik | |
2015-08-07 | aruco: don't hardcode thres param 2 | Stanislaw Halik | |
2015-07-28 | move header to right place | Stanislaw Halik | |
2015-07-28 | shortcuts: whole is _WIN32, don't check twice nested | Stanislaw Halik | |
2015-07-27 | qfc: move division last | Stanislaw Halik | |
2015-07-27 | shortcuts: extract key without modifiers for remap | Stanislaw Halik | |
2015-07-27 | shortcuts: guard against modifiers pressed in different order | Stanislaw Halik | |
2015-07-27 | shortcuts: add missing win32 binding | Stanislaw Halik | |
2015-07-26 | fix OSX build | Stanislaw Halik | |
2015-07-26 | qfc: qreal isn't float, use auto | Stanislaw Halik | |
2015-07-26 | qfc: use doubles for intermediate values | Stanislaw Halik | |
We could lose precision when multiplying by integral_max with floats. For doubles, we can count on up to 2^56 - 1 to be expressible somewhat exactly. | |||
2015-07-26 | qfc: reload spline data lazily | Stanislaw Halik | |
2015-07-26 | qfc: add missing mutex | Stanislaw Halik | |
2015-07-26 | qfc: tweaks | Stanislaw Halik | |
2015-07-26 | qfc: disallow placing new points if too close to existing ones | Stanislaw Halik | |
2015-07-26 | qfc: last value is always positive or zero | Stanislaw Halik | |
2015-07-26 | qfc: use integers as storage, not floats | Stanislaw Halik | |
Float mantissa has 23 bits. 9 bits get wasted per value. Instead, use uint16_t that doesn't lose much precision, but saves half the space. | |||
2015-07-26 | qfc: we need positive retval here | Stanislaw Halik | |
2015-07-26 | qfc: interpolate the right way for negative values | Stanislaw Halik | |
2015-07-26 | qfc: sensible step when drawing | Stanislaw Halik | |
Higher step value allows more precision when spline doesn't match the control points. | |||
2015-07-26 | qfc: lift computation out of loop | Stanislaw Halik | |
2015-07-26 | qfc: abstract away internally-used data type | Stanislaw Halik | |
Also, change value_type to more sensible value | |||
2015-07-26 | qfc: reduce artifacts on high-frequency functions | Stanislaw Halik | |
2015-07-26 | ui: also implicitly cancel options/mapping screens on normal close | Stanislaw Halik | |