summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt
diff options
context:
space:
mode:
Diffstat (limited to 'tracker-pt')
-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();