Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
36ba3d69
Commit
36ba3d69
authored
Jul 14, 2011
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
temporarily switch off TBB
parent
ca2433c2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
0 deletions
+12
-0
_lsvm_matching.h
modules/objdetect/src/_lsvm_matching.h
+4
-0
latentsvm.cpp
modules/objdetect/src/latentsvm.cpp
+2
-0
lsvmtbbversion.cpp
modules/objdetect/src/lsvmtbbversion.cpp
+2
-0
matching.cpp
modules/objdetect/src/matching.cpp
+2
-0
test_latentsvmdetector.cpp
modules/objdetect/test/test_latentsvmdetector.cpp
+2
-0
No files found.
modules/objdetect/src/_lsvm_matching.h
View file @
36ba3d69
...
...
@@ -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,
...
...
modules/objdetect/src/latentsvm.cpp
View file @
36ba3d69
...
...
@@ -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
...
...
modules/objdetect/src/lsvmtbbversion.cpp
View file @
36ba3d69
#include "precomp.hpp"
#undef HAVE_TBB
#ifdef HAVE_TBB
#include "_lsvm_tbbversion.h"
...
...
modules/objdetect/src/matching.cpp
View file @
36ba3d69
...
...
@@ -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
...
...
modules/objdetect/test/test_latentsvmdetector.cpp
View file @
36ba3d69
...
...
@@ -42,6 +42,8 @@
#include "test_precomp.hpp"
#undef HAVE_TBB
#include <string>
#ifdef HAVE_CVCONFIG_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment