gpt4 book ai didi

c++ - 为 opencv c++ 函数设置边框类型 : erode()

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:27:03 27 4
gpt4 key购买 nike

我需要将 OpenCV 函数 dilate()erode() 应用于 Mat 对象,这实际上是一个更大的 ROI图像。 Mat roiImg 是通过为原始图像 img 中的 ROI 创建 header 生成的:

Mat img = imread(...);
Mat roiImg = img (Rect(...));

这是 erode() 的参数列表:

void erode(InputArray src, OutputArray dst, InputArray kernel, Pointanchor=Point(-1,-1), int iterations=1, int borderType=BORDER_CONSTANT, const Scalar& borderValue=morphologyDefaultBorderValue() )

问题是,由于我输入到函数侵 eclipse /扩张的图像是 ROI 的 header ,似乎选择 BORDER_CONSTANT 作为边框类型以及等于 morphologyDefaultBorderValue 的边框值() 没有任何影响,边框值是从原始图像中获取的。

然后我在 copyMakeBorder() 的文档中找到了这个:

When the source image is a part (ROI) of a bigger image, the function will try to use the pixels outside of the ROI to form a border. To disable this feature and always do extrapolation, as if src was not a ROI, use borderType | BORDER_ISOLATED.

但是,从 erode() 函数中调用的函数 cv::borderInterpolate() 不接受 BORDER_ISOLATED 作为一个有效的边框类型!

现在,要解决这个问题,我必须克隆 roiImg,然后调用 erode()。但理想情况下,我不想要克隆的开销。有什么办法可以解决这个问题吗?

最佳答案

这似乎是一个 known bug在 OpenCV 中。在修复之前,克隆可能是最好的解决方法。

关于c++ - 为 opencv c++ 函数设置边框类型 : erode(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17711669/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com