İnthis官方教程我在标题中收到了错误。应该是什么原因?
Ptr<Tracker> tracker = Tracker::create( "KCF" );
这是tracking.hpp的一部分:
@endcode
of course, you can also add any additional methods of your choice. It should be pointed out,
however, that it is not expected to have a constructor declared, as creation should be done via
the corresponding createTracker() method.
In src/tracker.cpp file add BOILERPLATE_CODE(name,classname) line to the body of
Tracker::create() method you will find there, like :
@code
Ptr<Tracker> Tracker::create( const String& trackerType )
{
BOILERPLATE_CODE("BOOSTING",TrackerBoosting);
BOILERPLATE_CODE("MIL",TrackerMIL);
return Ptr<Tracker>();
}
@endcode
- Finally, you should implement the function with signature :
@code
Ptr<classname> classname::createTracker(const classname::Params ¶meters){
...
}
@endcode
我正在使用3.2.0版本。
答案 0 :(得分:8)
您从tracking.hpp
粘贴的代码不是实际代码,它只是示例代码,是文档的一部分。 tracking header file中唯一相关的代码是:
#include <opencv2/tracking/tracker.hpp>
#include <opencv2/tracking/tldDataset.hpp>
因此,要查看您实际导入的内容,您需要查看tracking/tracker.hpp
文件(here)。
如果您这样做,您会发现static create
类声明中没有Tracker
方法。该方法实际上已在this commit中删除。所以,基本上,你是对的:删除方法后教程没有更新。你应该report your issue到opencv团队。
话虽如此,为了使教程有效,您可能需要更换未编译的行:
Ptr<TrackerKCF> tracker = TrackerKCF::create();
这应该可以解决问题。