summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt
AgeCommit message (Collapse)Author
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
2018-01-10tracker/pt: reset dynamic pose on centerStanislaw Halik
2018-01-10many: spring cleanupStanislaw Halik
2018-01-04cv: fixed ps3 eye dialogStanislaw Halik
2018-01-03compat, tracker-pt: add unfinished calibratorStanislaw Halik
2018-01-03tracker/pt: more accurate dynamic thresholdStanislaw Halik
2017-12-21tracker/pt: default to natural grayscalingStanislaw Halik
It's the most optimized opencv version.
2017-12-09many: use otr_tr for non-qobject translationStanislaw Halik
I haven't even compile-tested Linux and OSX-specific bits.
2017-12-04api: add status check for modulesStanislaw Halik
2017-12-02tracker/pt: use cv::Mat::reshape() to avoid memcpyStanislaw Halik
2017-12-02compat/macros: rename obnoxious macroStanislaw Halik
2017-12-02tracker/{pt,aruco}: oops, disable multi threading rightStanislaw Halik
2017-11-02tracker/pt: greatly speedup grayscale conversionStanislaw Halik
2017-10-29tracker/pt: remove dubious grayscaling modesStanislaw Halik
2017-10-29static constexpr -> constexprStanislaw Halik
2017-10-27tracker/pt: fix -WreorderStanislaw Halik
2017-10-27tracker/pt: fine-tune point brightness scoreStanislaw Halik
2017-10-27tracker/pt: simplify point extractorStanislaw Halik
- no need to zero out floodfill areas, by its logic - let meanshift work with rect center as initial point - show extra points in gray
2017-10-22tracker/pt: return focal length directlyStanislaw Halik
2017-10-20tracker/pt: grayscaling modes workStanislaw Halik
2017-10-13tracker/pt, options: fix threshold sliderStanislaw Halik
It's only the tie_setting(slider_value, QSlider) that has race-free slider updates. Needed to update the threshold slider representation. Remove the tie_setting(int, QSlider) overload since it doesn't have the logic. Add a migration. Add base_value::notify() for use-cases like the checkbox updating the label.
2017-10-13tracker/pt: add threshold slider state descriptionStanislaw Halik
Isolate point radius code and reuse it.
2017-10-13options/tie: change "tie" overloadsStanislaw Halik
Adjust usages. There are ODR issues with MSVC and it doesn't support C++17 "static inline constexpr" _variables_. Otherwise, "signal_fun" could be a variable and not a function. The usages in accela/ewma2 dialog are more verbose now but the original API was silly.
2017-10-13compat/macros: fix "restrict" name clashStanislaw Halik
2017-10-13whitespaceStanislaw Halik
2017-10-10tracker/pt: comment typoStanislaw Halik
2017-10-08tracker/pt: edit dead codeStanislaw Halik
2017-10-08tracker/pt: grayscale methods workStanislaw Halik
- fix a braino (don't divide by two) - default to exact averaging, not perceptual weighted - use more specific cv::addWeighted
2017-09-23tracker/pt: fix tab order for new LED modeStanislaw Halik
2017-09-23use std::sizeStanislaw Halik
2017-09-23tracker/pt: fix brainoStanislaw Halik
Don't multiply red channel by 3 in 0->1 range.
2017-09-22tracker/pt: add color extraction modesStanislaw Halik
2017-09-22pointless to use likely macroStanislaw Halik
The operation is so many cycles, branch prediction doesn't matter here.
2017-09-22cv: use amcap.exe for ps3 eye exposure settingsStanislaw Halik
2017-08-19tracker/{pt,aruco}: simplifyStanislaw Halik
2017-08-14tracker/pt: move Affine class to cv/Stanislaw Halik
2017-07-29tracker/pt: revert most 2.3.8 changesStanislaw Halik
Remove contour usage. They're less precise than flood fill. Keep sensible changes.
2017-07-26tracker/pt: scale min/max radius with resolutionStanislaw Halik
For 320x240 frames auto threshold min value of 2.5 was too big. Scale it linearly with frame size.
2017-07-25tracker/pt: fix overlayStanislaw Halik
The "fract_bits" constant wasn't used consistently in the 2nd cv::circle invocation. Drop the invocation.
2017-07-25tracker/pt: fix weight formulaStanislaw Halik