0

When I execute in OpenCvSharp3:

SURF detector = SURF.Create(400);  

I got exception error:

Unable to find an entry point named 'xfeatures2d_SURF_create' in DLL 'OpenCvSharpExtern'.

Thanks,

King

4

1 回答 1

0

随着迁移到 OpenCv 3.0,SIFT 和 SURF 被迁移到 opencv_contrib。目前 OpenCvSharp3 不支持 opencv_contrib 模块。

请参阅此链接以获取替代方法 https://github.com/shimat/opencvsharp/issues/146

这个链接显示了一种在 OpenCvSharp3 中启用 contrib 代码的方法。这种方法很棘手,但可行。 https://github.com/shimat/opencvsharp/issues/180

于 2016-03-28T12:46:24.777 回答