OpenCV getMinFilter_GPU
getMinFilter 方法采用 (int,int,cvSize),OpenCv 如何期望我以 int 形式传递 2D 图像?
srcType – 输入图像类型。仅支持 CV_8UC1 和 CV_8UC4。
dstType – 输出图像类型。它仅支持与源类型相同的类型。
gpu::getMinFilter_GPU(int srcType, int dstType, const Size& ksize, Point anchor=Point(-1,-1))
谢谢
The getMinFilter method takes (int,int,cvSize), how is OpenCv expecting me to pass a 2D image in an int?
srcType – Input image type. Only CV_8UC1 and CV_8UC4 are supported.
dstType – Output image type. It supports only the same type as the source type.
gpu::getMinFilter_GPU(int srcType, int dstType, const Size& ksize, Point anchor=Point(-1,-1))
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上
getMinFilter_GPU
函数不做任何过滤。它只是返回一个能够进行过滤的特殊“处理器”对象。在 OpenCV 中使用 GPU 过滤函数的便捷方法是:
getMinFilter_GPU
和许多其他函数返回);createFilter2D_GPU
);IE:
Actually
getMinFilter_GPU
function does not do any any filtering. It just returns a special "processor" object which is able to do filtering.Convenient way to use gpu filtering functions in OpenCV is:
getMinFilter_GPU
and many other functions);createFilter2D_GPU
);I.e: