mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-20 04:25:42 +08:00
Fix std::vector <Ptr<Tracker> >
This commit is contained in:
@@ -1376,7 +1376,7 @@ public:
|
|||||||
bool update(const Mat& image);
|
bool update(const Mat& image);
|
||||||
|
|
||||||
int targetNum = 0;
|
int targetNum = 0;
|
||||||
std::vector <Ptr<Tracker>> trackers;
|
std::vector <Ptr<Tracker> > trackers;
|
||||||
std::vector <Rect2d> boundingBoxes;
|
std::vector <Rect2d> boundingBoxes;
|
||||||
std::vector<Scalar> colors;
|
std::vector<Scalar> colors;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user