从 IplImage 创建 CvMat 对象

发布于 2024-12-01 12:32:21 字数 283 浏览 1 评论 0原文

我正在尝试使用 OpenCV 在二值图像中的某个特征周围创建一个边界框。我读过,如果我通过将 CvMat 对象作为参数传递给 cvBoundingRect() 来创建 CvRect 对象,我可以获得我寻求的边界框。我的问题是如何从 IplImage 创建 CvMat。我想使用的行是:

CvMat *imageMatrix = cvCreateMat(int rows, int cols, int type);

但显然它不接受 IplImage 作为输入。是否有另一种从 IplImage 创建 CvMat 的方法?

I am trying to create a bounding box around a feature in a binary image using OpenCV. I've read that if I create a CvRect object by passing a CvMat object as an argument to cvBoundingRect(), I can obtain the bounding box I seek. My problem is how do I create the CvMat from an IplImage. The line I'd like to use is:

CvMat *imageMatrix = cvCreateMat(int rows, int cols, int type);

but clearly that doesn't accept an IplImage as an input. Is there another way of creating a CvMat from an IplImage?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七婞 2024-12-08 12:32:21

我认为您正在寻找 cvGetMat 函数。

I think you are searching for cvGetMat function.

左秋 2024-12-08 12:32:21

cvBoundingRect 不将图像作为参数,而是将点集作为参数。看来您应该首先从图像生成一个点集,然后调用cvBoundingRect

要从 IplImage 获取 CvMat 标头,您可以按照 Kamaev 的回答进行操作。

cvBoundingRect dose not take a image as parameter but a point set. It seems you should firstly generate a point set from your image and then call cvBoundingRect.

To get CvMat header from a IplImage, you can do as Kamaev has answered.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文