Commit 21f39397 authored by Maksim Shabunin's avatar Maksim Shabunin

Merge pull request #1084 from sovrasov:tracking_hide_method

parents 5348ba8a 27075d22
......@@ -565,11 +565,6 @@ class CV_EXPORTS_W Tracker : public virtual Algorithm
virtual void read( const FileNode& fn )=0;
virtual void write( FileStorage& fs ) const=0;
Ptr<TrackerModel> getModel()
{
return model;
}
protected:
virtual bool initImpl( const Mat& image, const Rect2d& boundingBox ) = 0;
......
......@@ -122,6 +122,11 @@ public:
void read(const FileNode& fn);
void write(FileStorage& fs) const;
Ptr<TrackerModel> getModel()
{
return model;
}
class Pexpert
{
public:
......@@ -166,4 +171,4 @@ public:
}
}
#endif
\ No newline at end of file
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment