Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Gabor 功能做一些分类工作。但是 OpenCV 不支持这个功能。你能给一些实现这个功能的想法吗?开源库也可以。提前致谢。
哦,opencv中有一个gabor内核:
#include "opencv2/imgproc/imgproc.hpp" cv::Mat kernel = cv::getGaborKernel(cv::Size(kernel_size,kernel_size), sig, th, lm, gm, ps); Mat src_f; // img converted to float Mat dest; cv::filter2D(src_f, dest, CV_32F, kernel);