fixing GT and GE comparison symbol
authorStevenPuttemans <steven.puttemans@kuleuven.be>
Mon, 18 Aug 2014 11:33:40 +0000 (13:33 +0200)
committerDikay900 <dark900@xyz.de>
Sun, 24 May 2015 11:31:06 +0000 (13:31 +0200)
Conflicts:
modules/gpu/doc/per_element_operations.rst

modules/cudaarithm/include/opencv2/cudaarithm.hpp

index 6e475db..d377a70 100644 (file)
@@ -211,8 +211,8 @@ CV_EXPORTS void pow(InputArray src, double power, OutputArray dst, Stream& strea
 @param dst Destination matrix that has the same size and type as the input array(s).
 @param cmpop Flag specifying the relation between the elements to be checked:
 -   **CMP_EQ:** a(.) == b(.)
--   **CMP_GT:** a(.) \< b(.)
--   **CMP_GE:** a(.) \<= b(.)
+-   **CMP_GT:** a(.) \> b(.)
+-   **CMP_GE:** a(.) \>= b(.)
 -   **CMP_LT:** a(.) \< b(.)
 -   **CMP_LE:** a(.) \<= b(.)
 -   **CMP_NE:** a(.) != b(.)