是否可以在 OpenCV 中看到函数 filter2D() 的内部

Is It Possible To See Inside the Function filter2D() in OpenCV?

本文关键字:filter2D 函数 内部 OpenCV 是否      更新时间:2023-10-16

我很想知道如何在opencv中查看filter2D() c ++函数背后的代码。

我知道它有效,但我想知道如何有没有办法查看这个?我看过imgproc.hpp和highgui.hpp,但似乎没有filter2D()定义。

任何帮助将不胜感激。

你可以在 OpenCV 源目录中看到 filter2D() 的实现,

opencv/modules/imgproc/src/filter.cpp

或者如果我是对的,请参阅OpenCV github Ln->3229。