From cb55d60f98db479a0e7b24a3b9733823d42e9649 Mon Sep 17 00:00:00 2001 From: StevenPuttemans Date: Mon, 18 Aug 2014 13:33:40 +0200 Subject: [PATCH] fixing GT and GE comparison symbol Conflicts: modules/gpu/doc/per_element_operations.rst --- modules/cudaarithm/include/opencv2/cudaarithm.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/cudaarithm/include/opencv2/cudaarithm.hpp b/modules/cudaarithm/include/opencv2/cudaarithm.hpp index 6e475db..d377a70 100644 --- a/modules/cudaarithm/include/opencv2/cudaarithm.hpp +++ b/modules/cudaarithm/include/opencv2/cudaarithm.hpp @@ -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(.) -- 2.7.4