如何访问OpenCV扩展图像处理模块?我需要一个专门的过滤器: fastGlobalSmootherFilter 。
我将OpenCV 3.2.0合并到我的C ++项目中。我正在寻找这种方法: http://docs.opencv.org/master/da/d17/group__ximgproc__filters.html#gaf8673fe9147160ad96ac6053fac3c106
在此模块中: http://docs.opencv.org/master/df/d2d/group__ximgproc.html
我通过此处的研究页面找到了它: https://sites.google.com/site/globalsmoothing/
我已尝试搜索OpenCV头文件,但没有人引用此函数。我找不到应该包含其中一些过滤器的edge_filter.hpp
。一个人如何实际调用该方法?
答案 0 :(得分:2)
在OpenCV开发者网站上,您将找到构建contrib模块(或附加内容)的说明
https://github.com/opencv/opencv_contrib/blob/master/README.md
默认情况下,它们不包含在您的构建中。