temporarily switch off TBB

pull/13383/head
Vadim Pisarevsky 14 years ago
parent ca2433c212
commit 36ba3d691e
  1. 4
      modules/objdetect/src/_lsvm_matching.h
  2. 2
      modules/objdetect/src/latentsvm.cpp
  3. 2
      modules/objdetect/src/lsvmtbbversion.cpp
  4. 2
      modules/objdetect/src/matching.cpp
  5. 2
      modules/objdetect/test/test_latentsvmdetector.cpp

@ -11,6 +11,8 @@
#include "_lsvm_fft.h"
#include "_lsvm_routine.h"
#undef HAVE_TBB
#ifdef HAVE_TBB
#include "_lsvm_tbbversion.h"
#endif
@ -356,6 +358,8 @@ int thresholdFunctionalScore(const CvLSVMFilterObject **all_F, int n,
CvPoint **points, int **levels, int *kPoints,
CvPoint ***partsDisplacement);
#undef HAVE_TBB
#ifdef HAVE_TBB
/*
// int tbbThresholdFunctionalScore(const CvLSVMFilterObject **all_F, int n,

@ -2,6 +2,8 @@
#include "_latentsvm.h"
#include "_lsvm_matching.h"
#undef HAVE_TBB
/*
// Transformation filter displacement from the block space
// to the space of pixels at the initial image

@ -1,5 +1,7 @@
#include "precomp.hpp"
#undef HAVE_TBB
#ifdef HAVE_TBB
#include "_lsvm_tbbversion.h"

@ -2,6 +2,8 @@
#include "_lsvm_matching.h"
#include <stdio.h>
#undef HAVE_TBB
#ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif

@ -42,6 +42,8 @@
#include "test_precomp.hpp"
#undef HAVE_TBB
#include <string>
#ifdef HAVE_CVCONFIG_H

Loading…
Cancel
Save