summaryrefslogtreecommitdiffhomepage
path: root/tracker-easy/cv-point-extractor.cpp
diff options
context:
space:
mode:
authorStéphane Lenclud <github@lenclud.com>2019-04-13 20:27:41 +0200
committerStéphane Lenclud <github@lenclud.com>2019-04-24 18:46:12 +0200
commit984f1c719a6636ec5e155a218bd69fec7da8b71c (patch)
tree5ca7b400b1e636e0214e25577bd698782ce860b6 /tracker-easy/cv-point-extractor.cpp
parent9133a482770bf79c2d67f3ebaa814e2c31af3015 (diff)
Easy Tracker: Sorting out UI and logo issues.
Diffstat (limited to 'tracker-easy/cv-point-extractor.cpp')
-rw-r--r--tracker-easy/cv-point-extractor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tracker-easy/cv-point-extractor.cpp b/tracker-easy/cv-point-extractor.cpp
index 9720eb63..368f5587 100644
--- a/tracker-easy/cv-point-extractor.cpp
+++ b/tracker-easy/cv-point-extractor.cpp
@@ -79,10 +79,10 @@ namespace EasyTracker
}
}
- // Keep the three points which are highest, i.e. with lowest Y coordinates
+ // Keep only the three points which are highest, i.e. with lowest Y coordinates
// That's most usefull to discard noise from features below your cap/head.
// Typically noise comming from zippers and metal parts on your clothing.
- // With a cap tracker it also successfully discards noise glasses.
+ // With a cap tracker it also successfully discards noise from glasses.
// However it may not work as good with a clip user wearing glasses.
while (aPoints.size() > 3) // Until we have no more than three points
{