summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_pt
AgeCommit message (Collapse)Author
2015-10-20all: update copyright where appropriateStanislaw Halik
2015-10-20all: comments onlyStanislaw Halik
2015-10-18pt: use previous pose on NaN result from POSITStanislaw Halik
This will reset dynamic pose resolution if the error persists.
2015-10-17pt: reformat moreStanislaw Halik
2015-10-17pt: reformat positStanislaw Halik
2015-10-17pt: refactor auto threshold somewhatStanislaw Halik
2015-10-17pt: rename ill-chosen nameStanislaw Halik
2015-10-17pt: switch min/max point size to realsStanislaw Halik
2015-10-02pt: add histogram-based thresholdingStanislaw Halik
Otsu-based thresholding doesn't work in normal lighting conditions. Sponsored-by: TrackHat
2015-10-02pt: experimental auto threshold supportStanislaw Halik
Sponsored-by: TrackHat
2015-09-05pt: add wiki link for calibration instructionsStanislaw Halik
2015-09-04pt: change extraction codeStanislaw Halik
Point size is now specified by its radius. Points are extracted in one pass, using multiple passes caused missed detection for some users. Circularity is now displayed as part of overlay. Points are now sorted by circularity, which is our confidence metric. Tracker code ignores additional points, keeping only those with the highest confidence metric.
2015-08-27pt: fix type mismatchStanislaw Halik
2015-08-22props changed onlyStanislaw Halik
Some source files had executable bit on. Remove it.
2015-08-22pt: show extracted points' areas and success countStanislaw Halik
2015-08-18pt, aruco: another take at focal length formulaStanislaw Halik
Aspect ratio is meant to be viewport's ratio, not diagonal to axis.
2015-07-26pt camera: small tweaksStanislaw Halik
2015-07-26pt: preventing crashing on camera manipulationStanislaw Halik
2015-07-25move portability classes to compat libraryStanislaw Halik
2015-07-25fix integral/float confusionStanislaw Halik
2015-07-24standardize on not using "using namespace {cv,std}"Stanislaw Halik
2015-07-24Revert "pt: change point internal representation"opentrack-2.3-rc15p1Stanislaw Halik
This reverts commit e89c2b1034692eb1365715a089b7035e6d837719. Issue: #199
2015-07-20for now remove calibration supportStanislaw Halik
PT tracker returns garbage when calibrating, Z is zero. Maybe can be reverted and fixed later.
2015-07-20cleanup #ifdefsStanislaw Halik
We're the only maintainer of the PT tracker now, so don't clutter the file so much.
2015-07-20cleanup invalid recursive mutex acquisitionsStanislaw Halik
2015-07-20plug in race in camera releaseStanislaw Halik
We can crash if start/stop pressed fast eventually.
2015-07-20cleanup ftnoir codeStanislaw Halik
2015-07-20pt: display label only onceStanislaw Halik
2015-07-20pt: cleanup some data racesStanislaw Halik
2015-07-20pt: use calibrationStanislaw Halik
Issue: #190
2015-07-20pt: change point internal representationStanislaw Halik
Store points as pixel coordinates, not -0.5->0.5. This has no effect on tracking as POSIT is robust enough not to care.
2015-07-20camera: more robust get_info()Stanislaw Halik
If camera was barely created and there's no info, grab the first frame to get resolution data.
2015-07-20add my copyright to some more codeStanislaw Halik
2015-07-19don't set thread affinity for anythingStanislaw Halik
Fixes #174
2015-07-16all: use macros for symbol exposureStanislaw Halik
2015-07-13pt, ht, aruco: use calibration data. rename fov to diagonal in UIStanislaw Halik
2015-07-13reformat onlyStanislaw Halik
2015-07-08retab and reformat onlyStanislaw Halik
2015-07-06pt: initial camera dialogStanislaw Halik
2015-07-06prevent redefinition error by qt mocStanislaw Halik
2015-07-03pt: use default cap dimensionsStanislaw Halik
Reported-by: Mathijs Groothuis Issue: #180
2015-07-03pt: default to "standard" clip dimensionsStanislaw Halik
Suggested-by: Mathijs Groothuis Issue: #180
2015-07-03pt: reintroduce dynamic pose timerStanislaw Halik
2015-07-03fix crash on msvcStanislaw Halik
2015-07-01pt: show color frame in widgetStanislaw Halik
2015-07-01pt: fix sqrt epsStanislaw Halik
2015-07-01pt: use iterative contour detectorStanislaw Halik
2015-06-19pt: extractor algorithm based on OpenCV's SimpleBlobDetectorStanislaw Halik
Tunables are probably wrong, we'll get to that later.
2015-06-19pt: remove hysteresisStanislaw Halik
No one used it, and we have a better solution for stable extraction, pending commit.
2015-06-16pt: try simple method of point extractionStanislaw Halik
To be reverted if broken