标签: c++ opencv
我试图制作快速字符识别算法。
我得到absdiff()的结果,现在我想对所有这cv :: Mat求和,以找出它的不同之处。
我该怎么做?
答案 0 :(得分:1)
OpenCV函数sum()为矩阵的所有维度添加元素:
http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#sum
Scalar result = sum(A);