我正在使用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?)。但我已经包含了所有必要的参考资料。有谁能说出我哪里错了吗?
提前感谢
发布于 2011-11-15 04:52:25
我相信您使用的是对代码的旧调用,它现在应该是:
SURFDetector surfParam = new SURFDetector(500, false);假设您有正确的引用并使用语句,这将起作用,请参考2.3.0中的SurfFeature示例来检查您的代码。
干杯,
克里斯
https://stackoverflow.com/questions/8127289
复制相似问题