我尝试编译一个提取功能的函数。
Ptr<Feature2d> kaze = KAZE::create();
但是我得到了一个错误。首先是&#34;使用未声明的标识符&#39; KAZE&#39;&#34;
下一行是kaze->detectAndCompute(img, noArray(), keypoints, descriptors);
。据说:&#34;没有名为&#39; detectAndCompute&#39; in&#39; cv :: Feature2D&#39;&#34;。
我已经包含了标题#include <opencv2/features2d/features2d.hpp>
,我也链接了libs。我不知道出了什么问题。