Fixed matchTemplate doc (ticket #1045)
authorIlya Lysenkov <no@email>
Wed, 8 Jun 2011 15:37:49 +0000 (15:37 +0000)
committerIlya Lysenkov <no@email>
Wed, 8 Jun 2011 15:37:49 +0000 (15:37 +0000)
doc/opencv1/c/imgproc_object_detection.rst
doc/opencv1/py/imgproc_object_detection.rst
modules/imgproc/doc/object_detection.rst

index d934f0f..e05f854 100644 (file)
@@ -104,7 +104,7 @@ image patch:
     
     .. math::
     
-        R(x,y)= \frac{\sum_{x',y'} (T(x',y') \cdot I'(x+x',y+y'))}{\sqrt{\sum_{x',y'}T(x',y')^2 \cdot \sum_{x',y'} I(x+x',y+y')^2}} 
+        R(x,y)= \frac{\sum_{x',y'} (T(x',y') \cdot I(x+x',y+y'))}{\sqrt{\sum_{x',y'}T(x',y')^2 \cdot \sum_{x',y'} I(x+x',y+y')^2}} 
     
     
     
@@ -114,7 +114,7 @@ image patch:
     
     .. math::
     
-        R(x,y)= \sum _{x',y'} (T'(x',y')  \cdot I(x+x',y+y'))  
+        R(x,y)= \sum _{x',y'} (T'(x',y')  \cdot I'(x+x',y+y'))  
     
     
     where
index aa87485..bd7e557 100644 (file)
@@ -110,7 +110,7 @@ image patch:
     
     .. math::
     
-        R(x,y)= \frac{\sum_{x',y'} (T(x',y') \cdot I'(x+x',y+y'))}{\sqrt{\sum_{x',y'}T(x',y')^2 \cdot \sum_{x',y'} I(x+x',y+y')^2}} 
+        R(x,y)= \frac{\sum_{x',y'} (T(x',y') \cdot I(x+x',y+y'))}{\sqrt{\sum_{x',y'}T(x',y')^2 \cdot \sum_{x',y'} I(x+x',y+y')^2}} 
     
     
     
@@ -120,7 +120,7 @@ image patch:
     
     .. math::
     
-        R(x,y)= \sum _{x',y'} (T'(x',y')  \cdot I(x+x',y+y'))  
+        R(x,y)= \sum _{x',y'} (T'(x',y')  \cdot I'(x+x',y+y'))  
     
     
     where
index cb22ea0..b6f85db 100644 (file)
@@ -23,7 +23,7 @@ The function slides through ``image`` , compares the
 overlapped patches of size
 :math:`w \times h` against ``templ`` using the specified method and stores the comparison results in ``result`` . Here are the formulae for the available comparison
 methods (
-:math:`I` denotes ``image``,:math:`T` ``template``,:math:`R` ``result`` ). The summation is done over template and/or the
+:math:`I` denotes ``image``, :math:`T` ``template``, :math:`R` ``result`` ). The summation is done over template and/or the
 image patch:
 :math:`x' = 0...w-1, y' = 0...h-1`
 * method=CV\_TM\_SQDIFF
@@ -48,13 +48,13 @@ image patch:
 
     .. math::
 
-        R(x,y)= \frac{\sum_{x',y'} (T(x',y') \cdot I'(x+x',y+y'))}{\sqrt{\sum_{x',y'}T(x',y')^2 \cdot \sum_{x',y'} I(x+x',y+y')^2}}
+        R(x,y)= \frac{\sum_{x',y'} (T(x',y') \cdot I(x+x',y+y'))}{\sqrt{\sum_{x',y'}T(x',y')^2 \cdot \sum_{x',y'} I(x+x',y+y')^2}}
 
 * method=CV\_TM\_CCOEFF
 
     .. math::
 
-        R(x,y)= \sum _{x',y'} (T'(x',y')  \cdot I(x+x',y+y'))
+        R(x,y)= \sum _{x',y'} (T'(x',y')  \cdot I'(x+x',y+y'))
 
     where