From 7db3dd4f0a303d98f29240557d5be375c4741817 Mon Sep 17 00:00:00 2001 From: Maria Dimashova Date: Fri, 5 Aug 2011 14:05:41 +0000 Subject: [PATCH] fixed comment and doc on L2 --- .../features2d/doc/common_interfaces_of_descriptor_matchers.rst | 2 +- modules/features2d/include/opencv2/features2d/features2d.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/features2d/doc/common_interfaces_of_descriptor_matchers.rst b/modules/features2d/doc/common_interfaces_of_descriptor_matchers.rst index 31ac5a1044..bc5de994b6 100644 --- a/modules/features2d/doc/common_interfaces_of_descriptor_matchers.rst +++ b/modules/features2d/doc/common_interfaces_of_descriptor_matchers.rst @@ -290,7 +290,7 @@ For efficiency, ``BruteForceMatcher`` is used as a template parameterized with t template<> struct Accumulator { typedef int Type; }; /* - * Squared Euclidean distance functor + * Euclidean distance functor */ template struct L2 diff --git a/modules/features2d/include/opencv2/features2d/features2d.hpp b/modules/features2d/include/opencv2/features2d/features2d.hpp index be41e0a1bf..232f3b53af 100644 --- a/modules/features2d/include/opencv2/features2d/features2d.hpp +++ b/modules/features2d/include/opencv2/features2d/features2d.hpp @@ -2084,7 +2084,7 @@ template<> struct Accumulator { typedef float Type; }; template<> struct Accumulator { typedef float Type; }; /* - * Squared Euclidean distance functor + * Euclidean distance functor */ template struct CV_EXPORTS L2