OpenCV C++,使用 cv::Mat 获取感兴趣区域 (ROI)

发布于 2024-11-18 10:51:01 字数 356 浏览 3 评论 0原文

我对 OpenCV 很陌生(两天前开始使用它),我正在尝试从 Kinect 获得的深度图像中剪切手部图像,我需要手部图像进行手势识别。我的图像是 cv::Mat 类型。我的问题是:

  1. 有没有办法将 cv::Mat 转换为 cvMat,以便我可以使用 cvGetSubRect 方法来获取感兴趣的区域?
  2. cv::Mat 中是否有任何方法可以用来获取图像的一部分?

我想使用 IplImage 但我在某处读到 cv::Mat 是现在的首选方式。

I'm very new to OpenCV (started using it two days ago), I'm trying to cut a hand image from a depth image got from Kinect, I need the hand image for gesture recognition. I have the image as a cv::Mat type. My questions are:

  1. Is there a way to convert cv::Mat to cvMat so that I can use cvGetSubRect method to get the Region of interest?
  2. Are there any methods in cv::Mat that I can use for getting the part of the image?

I wanted to use IplImage but I read somewhere that cv::Mat is the preferred way now.

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

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

发布评论

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

评论(2

坚持沉默 2024-11-25 10:51:01

您可以在cv::Mat上使用重载的函数调用运算符:

cv::Mat img = ...;
cv::Mat subImg = img(cv::Range(0, 100), cv::Range(0, 100));

检查OpenCV 文档 了解更多信息以及采用 cv::Rect 的重载函数。请注意,使用这种形式的切片会创建新的矩阵标头,但不会复制数据。

You can use the overloaded function call operator on the cv::Mat:

cv::Mat img = ...;
cv::Mat subImg = img(cv::Range(0, 100), cv::Range(0, 100));

Check the OpenCV documentation for more information and for the overloaded function that takes a cv::Rect. Note that using this form of slicing creates a new matrix header, but does not copy the data.

时光匆匆的小流年 2024-11-25 10:51:01

也许另一种方法可能是:

//Create the rectangle
cv::Rect roi(10, 20, 100, 50);
//Create the cv::Mat with the ROI you need, where "image" is the cv::Mat you want to extract the ROI from
cv::Mat image_roi = image(roi)

我希望这能有所帮助。

Maybe an other approach could be:

//Create the rectangle
cv::Rect roi(10, 20, 100, 50);
//Create the cv::Mat with the ROI you need, where "image" is the cv::Mat you want to extract the ROI from
cv::Mat image_roi = image(roi)

I hope this can help.

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