gpt4 book ai didi

c++ - 在 OpenCV C++ 中访问 "Mat"对象(不是 CvMat 对象)中的矩阵元素

转载 作者:IT老高 更新时间:2023-10-28 12:44:49 35 4
gpt4 key购买 nike

如何在 OpenCV 2.0 的新“Mat”类中按行访问元素?该文档在下面链接,但我无法理解它。 http://opencv.willowgarage.com/documentation/cpp/basic_structures.html#mat

最佳答案

关于文档:

http://docs.opencv.org/2.4/modules/core/doc/basic_structures.html#mat

上面写着:

(...) if you know the matrix element type, e.g. it is float, then you can use at<>() method

也就是说,你可以使用:

Mat M(100, 100, CV_64F);
cout << M.at<double>(0,0);

也许使用 Mat_ 类更容易。它是 Mat 的模板包装器。Mat_ 重载了 operator() 以便访问元素。

关于c++ - 在 OpenCV C++ 中访问 "Mat"对象(不是 CvMat 对象)中的矩阵元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1844736/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com