diff --git a/modules/core/include/opencv2/core/mat.hpp b/modules/core/include/opencv2/core/mat.hpp index 06aa48d3be..d554663783 100644 --- a/modules/core/include/opencv2/core/mat.hpp +++ b/modules/core/include/opencv2/core/mat.hpp @@ -1705,7 +1705,7 @@ public: Keep in mind that the size identifier used in the at operator cannot be chosen at random. It depends on the image from which you are trying to retrieve the data. The table below gives a better insight in this: - - If matrix is of type `CV_8U` or `CV_8S` then use `Mat.at(y,x)`. + - If matrix is of type `CV_8U` then use `Mat.at(y,x)`. - If matrix is of type `CV_8S` then use `Mat.at(y,x)`. - If matrix is of type `CV_16U` then use `Mat.at(y,x)`. - If matrix is of type `CV_16S` then use `Mat.at(y,x)`.