mirror of
https://github.com/opencv/opencv.git
synced 2024-11-27 12:40:05 +08:00
aab6362705
Tracking API: move to video/tracking.hpp * video(tracking): moved code from opencv_contrib/tracking module - Tracker API - MIL, GOTURN trackers - applied clang-format * video(tracking): cleanup unused code * samples: add tracker.py sample * video(tracking): avoid div by zero * static analyzer
23 lines
468 B
C++
23 lines
468 B
C++
#include "perf_precomp.hpp"
|
|
|
|
#if defined(HAVE_HPX)
|
|
#include <hpx/hpx_main.hpp>
|
|
#endif
|
|
|
|
static
|
|
void initTests()
|
|
{
|
|
const char* extraTestDataPath =
|
|
#ifdef WINRT
|
|
NULL;
|
|
#else
|
|
getenv("OPENCV_DNN_TEST_DATA_PATH");
|
|
#endif
|
|
if (extraTestDataPath)
|
|
cvtest::addDataSearchPath(extraTestDataPath);
|
|
|
|
cvtest::addDataSearchSubDirectory(""); // override "cv" prefix below to access without "../dnn" hacks
|
|
}
|
|
|
|
CV_PERF_TEST_MAIN(video, initTests())
|