openCV中的掩蔽

发布于 2025-01-08 15:47:56 字数 136 浏览 0 评论 0原文

Mat mask = Mat::zeros(img1.rows, img1.cols, CV_8UC1)

我认为这段代码应该使用 C++ 创建一个掩码。像这样在 C 中创建掩码相当于什么?另外,有人可以向我解释一下这段代码实际上是做什么的吗?

Mat mask = Mat::zeros(img1.rows, img1.cols, CV_8UC1)

this piece of code is supposed to create a mask, I think, by using C++. What is the equivalent to creating a mask in C, like this? also, can someone explain to me what this piece of code is actually doing please?

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

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

发布评论

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

评论(1

℉服软 2025-01-15 15:47:56

使用 C API,我们称

IplImage *mask = cvCreateImage(cvGetSize(img1), IPL_DEPTH_8U, 1);
cvSetZero(mask);

C API 更容易阅读(IMO),它的作用是创建一个每像素 8 位、1 通道(灰度)的图像,其大小与 img1 相同,然后将其所有像素值设置为零。

With the C API, we would call

IplImage *mask = cvCreateImage(cvGetSize(img1), IPL_DEPTH_8U, 1);
cvSetZero(mask);

The C API is easier to read IMO, and what it does is create an image with 8 bits per pixel, 1 channel (grayscale), of the same size as img1, and then setting all its pixel values to zero.

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