1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-23 00:49:38 +08:00

Added multiTracker.hpp (fix)

This commit is contained in:
Vladimir
2015-08-10 09:24:56 +09:00
parent 8aab261574
commit 5ce3ce37d0

View File

@@ -0,0 +1,16 @@
#ifndef OPENCV_MULTITRACKER
#define OPENCV_MULTITRACKER
#include "tldTracker.hpp"
#include "tldUtils.hpp"
#include <math.h>
namespace cv
{
void detect_all(const Mat& img, const Mat& imgBlurred, std::vector<Rect2d>& res, std::vector < std::vector < tld::TLDDetector::LabeledPatch >> &patches,
std::vector<bool>& detect_flgs, std::vector<Ptr<Tracker>>& trackers);
void ocl_detect_all(const Mat& img, const Mat& imgBlurred, std::vector<Rect2d>& res, std::vector < std::vector < tld::TLDDetector::LabeledPatch >> &patches,
std::vector<bool>& detect_flgs, std::vector<Ptr<Tracker>>& trackers);
std::vector <Rect2d> debugStack[10];
}
#endif