使用 at<float>(i, j) 访问 cv::Mat 的元素.是 (x,y) 还是 (

Accessing elements of a cv::Mat with atlt;floatgt;(i, j). Is it (x,y) or (row,col)?(使用 atlt;floatgt;(i, j) 访问 cv::Mat 的元素.是 (x,y) 还是 (row,col)?)
本文介绍了使用 at<float>(i, j) 访问 cv::Mat 的元素.是 (x,y) 还是 (row,col)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

当我们访问 cv::Mat 结构的特定元素时,我们可以使用 mat.at(i,j) 来访问位置 i,j 的元素.然而,目前尚不清楚 (i,j) 是指矩阵中的 x,y 坐标,还是第 i 行和第 j 列.

When we access specific elements of a cv::Mat structure, we can use mat.at(i,j) to access the element at position i,j. What is not immediately clear, however, whether (i,j) refers to the x,y coordinate in the matrix, or the ith row and the jth column.

推荐答案

OpenCV 与其他库一样,按行优先顺序处理矩阵(和图像).这意味着每个访问都被定义为 (row, column).

OpenCV, like may other libraries, treat matrices (and images) in row-major order. That means every access is defined as (row, column).

此一般规则的显着例外是 Matlab 和 Eigen 库.

Notable exceptions from this general rule are Matlab and Eigen libraries.

这篇关于使用 at<float>(i, j) 访问 cv::Mat 的元素.是 (x,y) 还是 (row,col)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Bring window to front -gt; raise(),show(),activateWindow() don’t work(把窗户放在前面 -raise(),show(),activateWindow() 不起作用)
How to get a list video capture devices NAMES (web cameras) using Qt (crossplatform)? (C++)(如何使用 Qt(跨平台)获取列表视频捕获设备名称(网络摄像机)?(C++))
How to compile Qt as static(如何将 Qt 编译为静态)
C++ over Qt : Controlling transparency of Labels and Buttons(C++ over Qt:控制标签和按钮的透明度)
How to know when a new USB storage device is connected in Qt?(Qt如何知道新的USB存储设备何时连接?)
What is an event loop in Qt?(Qt 中的事件循环是什么?)