OpenCV Mat 对象 - 获取数据长度



在OpenCV中,我能够在C++中使用VideoCapture捕获帧,但是,当我尝试从帧中获取数据并计算长度时,它只返回0。

下面是我的示例代码:

VideoCapture cap(0);
for(;;) {
  Mat frame;
  cap >> frame;
  int length = strlen((char*) frame.data); // returns 0
}

正如我上面提到的,如果我将帧保存在 PNG 文件中,我实际上可以看到图像,所以我无法理解为什么数据长度为零。

有什么线索吗?

你也可以做:

Mat mat;
int len = mat.total() * mat.elemSize(); // or mat.elemSize1()

strlen 方法仅适用于字符串,字符串是由特殊字符结尾的字符数组:

http://www.cplusplus.com/reference/cstring/strlen/

您已将Mat类型转换为char*,因此它不是字符串。

基于此处的解决方案,请尝试:

Mat mat;
int rows = mat.rows;
int cols = mat.cols;
int num_el = rows*cols;
int len = num_el*mat.elemSize1();

获取一个通道的大小(以字节为单位)。此外,如果您想要所有通道,请使用 elemSize()(即,如果Mat是 3 通道图像,您将获得 elemSize1() 值的 3 倍)。

请在此处讨论Mat可以包含的各种类型:

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

相关内容

  • 没有找到相关文章

最新更新