我正在使用emgucv2.3。
当我输入行MCvSURFParams surfParam = new MCvSURFParams(500, false);
时,我收到错误The type or namespace name 'MCvSURFParams' could not be found (are you missing a using directive or an assembly reference?)
。但我已经包括所有必要的参考资料。谁能告诉我哪里错了?
提前致谢
答案 0 :(得分:5)
我相信您现在应该使用旧代码调用:
SURFDetector surfParam = new SURFDetector(500, false);
假设您有正确的引用和使用语句,这将有效,请参考2.3.0中的SurfFeature示例来检查您的代码。
干杯,
克里斯