summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-10-10 09:21:12 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-10-10 09:21:50 +0200
commit2a1392281193183c39dbd4f1d4a1cb5d1d529ad4 (patch)
tree1489014f52721468524ce1490054fa711b3b1cdd
parentdad3358f0628de8a8c4572711b8f55f332e421ab (diff)
tracker/pt: comment typo
-rw-r--r--tracker-pt/point_extractor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tracker-pt/point_extractor.cpp b/tracker-pt/point_extractor.cpp
index 07c0b1aa..cd8b8ce3 100644
--- a/tracker-pt/point_extractor.cpp
+++ b/tracker-pt/point_extractor.cpp
@@ -42,7 +42,7 @@ algorithm for tracking single particles with variable size and shape." (2008).
*/
static cv::Vec2d MeanShiftIteration(const cv::Mat &frame_gray, const cv::Vec2d &current_center, double filter_width)
{
- // Most amazingling this function runs faster with doubles than with floats.
+ // Most amazingly this function runs faster with doubles than with floats.
const double s = 1.0 / filter_width;
double m = 0;
@@ -337,7 +337,7 @@ end:
b.pos[1] = pos[1] + rect.y;
}
- // End of mean shift code. At this point, blob positions are updated which hopefully less noisy less biased values.
+ // End of mean shift code. At this point, blob positions are updated with hopefully less noisy less biased values.
points.reserve(max_blobs);
points.clear();