From: StevenPuttemans Date: Mon, 18 Aug 2014 11:33:40 +0000 (+0200) Subject: fixing GT and GE comparison symbol X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~2460^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cb55d60f98db479a0e7b24a3b9733823d42e9649;p=platform%2Fupstream%2Fopencv.git fixing GT and GE comparison symbol Conflicts: modules/gpu/doc/per_element_operations.rst --- 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(.)