1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

fixing GT and GE comparison symbol

This commit is contained in:
StevenPuttemans
2014-08-18 13:33:40 +02:00
parent 7409f21e9f
commit d558260a8e
+2 -2
View File
@@ -289,8 +289,8 @@ Compares elements of two matrices.
: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(.)``