1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-22 07:31:26 +08:00

Cleanup old TBB-related guards

This commit is contained in:
Maksim Shabunin
2018-04-06 15:14:52 +03:00
parent 2baed7e35e
commit d3630d0fa6
7 changed files with 0 additions and 107 deletions

View File

@@ -113,16 +113,6 @@ int main( int argc, char** argv )
if ( !readImageLists(image_list, imgFileList) )
return -1;
#ifdef HAVE_TBB
cout << "Running with TBB" << endl;
#else
#ifdef _OPENMP
cout << "Running with OpenMP" << endl;
#else
cout << "Running without OpenMP and without TBB" << endl;
#endif
#endif
cv::Ptr<DPMDetector> detector = \
DPMDetector::create(vector<string>(1, model_path));