Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
933f53e4
Commit
933f53e4
authored
Jan 25, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #956 from alalek:opencv_world_with_contrib
parents
0514c1f0
07295692
Hide whitespace changes
Inline
Side-by-side
Showing
30 changed files
with
38 additions
and
266 deletions
+38
-266
CMakeLists.txt
modules/dnn/CMakeLists.txt
+1
-2
OpenCVFindLibProtobuf.cmake
modules/dnn/cmake/OpenCVFindLibProtobuf.cmake
+1
-1
caffe_importer.cpp
modules/dnn/src/caffe/caffe_importer.cpp
+1
-1
convolution_layer.cpp
modules/dnn/src/layers/convolution_layer.cpp
+6
-6
elementwise_layers.hpp
modules/dnn/src/layers/elementwise_layers.hpp
+1
-3
lrn_layer.cpp
modules/dnn/src/layers/lrn_layer.cpp
+1
-1
softmax_layer.cpp
modules/dnn/src/layers/softmax_layer.cpp
+1
-1
tf_importer.cpp
modules/dnn/src/tensorflow/tf_importer.cpp
+1
-1
THGeneral.cpp
modules/dnn/src/torch/THGeneral.cpp
+9
-8
precomp.cpp
modules/dpm/src/precomp.cpp
+0
-44
CMakeLists.txt
modules/freetype/CMakeLists.txt
+2
-1
CMakeLists.txt
modules/hdf/CMakeLists.txt
+2
-3
precomp.cpp
modules/plot/src/precomp.cpp
+0
-50
perf_precomp.cpp
modules/reg/perf/perf_precomp.cpp
+0
-44
precomp.cpp
modules/reg/src/precomp.cpp
+0
-39
test_precomp.cpp
modules/reg/test/test_precomp.cpp
+0
-44
test_precomp.cpp
modules/rgbd/test/test_precomp.cpp
+0
-1
CMakeLists.txt
modules/saliency/CMakeLists.txt
+0
-1
CmFile.cpp
modules/saliency/src/BING/CmFile.cpp
+1
-1
CmShow.cpp
modules/saliency/src/BING/CmShow.cpp
+1
-1
FilterTIG.cpp
modules/saliency/src/BING/FilterTIG.cpp
+1
-1
ValStructVec.cpp
modules/saliency/src/BING/ValStructVec.cpp
+1
-1
objectnessBING.cpp
modules/saliency/src/BING/objectnessBING.cpp
+1
-1
CMakeLists.txt
modules/xfeatures2d/CMakeLists.txt
+2
-2
affine_feature2d.cpp
modules/xfeatures2d/src/affine_feature2d.cpp
+1
-1
grayscale_bitmap.cpp
modules/xfeatures2d/src/pct_signatures/grayscale_bitmap.cpp
+1
-1
pct_clusterizer.cpp
modules/xfeatures2d/src/pct_signatures/pct_clusterizer.cpp
+1
-1
pct_sampler.cpp
modules/xfeatures2d/src/pct_signatures/pct_sampler.cpp
+1
-1
CMakeLists.txt
modules/ximgproc/CMakeLists.txt
+0
-3
CMakeLists.txt
modules/xobjdetect/CMakeLists.txt
+1
-1
No files found.
modules/dnn/CMakeLists.txt
View file @
933f53e4
...
...
@@ -3,7 +3,6 @@ if(WINRT)
endif
()
set
(
the_description
"Deep neural network module. It allows to load models from different frameworks and to make forward pass"
)
set
(
OPENCV_MODULE_IS_PART_OF_WORLD OFF
)
ocv_add_module
(
dnn opencv_core opencv_imgproc PRIVATE_REQUIRED
"
${
LAPACK_LIBRARIES
}
"
WRAP python matlab
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS -Wno-shadow -Wno-parentheses -Wmaybe-uninitialized -Wsign-promo
...
...
@@ -36,7 +35,7 @@ endif()
# ----------------------------------------------------------------------------
# Resolve libprotobuf dependency
# ----------------------------------------------------------------------------
include
(
cmake/OpenCVFindLibProtobuf.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/
cmake/OpenCVFindLibProtobuf.cmake
)
ocv_source_group
(
"Src
\\
protobuf"
FILES
${
PROTOBUF_SRCS
}
${
PROTOBUF_HDRS
}
)
ocv_module_include_directories
(
include
${
PROTOBUF_INCLUDE_DIR
}
)
...
...
modules/dnn/cmake/OpenCVFindLibProtobuf.cmake
View file @
933f53e4
...
...
@@ -28,7 +28,7 @@ if(PROTOBUF_FOUND)
# nothing
else
()
include
(
${
CMAKE_CURRENT_LIST_DIR
}
/download_protobuf.cmake
)
add_subdirectory
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/3rdparty/protobuf
)
add_subdirectory
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/3rdparty/protobuf
${
CMAKE_BINARY_DIR
}
/3rdparty/protobuf
)
set
(
PROTOBUF_LIBRARIES libprotobuf
)
set
(
PROTOBUF_INCLUDE_DIR
${
PROTOBUF_CPP_PATH
}
/protobuf-3.1.0/src
)
endif
()
...
...
modules/dnn/src/caffe/caffe_importer.cpp
View file @
933f53e4
...
...
@@ -39,7 +39,7 @@
//
//M*/
#include "precomp.hpp"
#include "
../
precomp.hpp"
using
namespace
cv
;
using
namespace
cv
::
dnn
;
...
...
modules/dnn/src/layers/convolution_layer.cpp
View file @
933f53e4
...
...
@@ -60,12 +60,12 @@ BaseConvolutionLayerImpl::BaseConvolutionLayerImpl():
inpGroupCn
(
0
),
outGroupCn
(
0
),
ksize
(
0
),
bias
(
false
),
tryUseOpenCL
(
false
)
{
#if HAVE_CBLAS
if
(
getBlasThreads
()
!=
cv
::
getThreadNum
())
{
setBlasThreads
(
cv
::
getThreadNum
());
}
#endif
#ifdef HAVE_LAPACK
if
(
getBlasThreads
()
!=
cv
::
getThreadNum
())
{
setBlasThreads
(
cv
::
getThreadNum
());
}
#endif
}
void
BaseConvolutionLayerImpl
::
init
()
...
...
modules/dnn/src/layers/elementwise_layers.hpp
View file @
933f53e4
...
...
@@ -46,9 +46,7 @@
#include <cmath>
#include <opencv2/dnn/all_layers.hpp>
#include <opencv2/core/ocl.hpp>
#ifdef HAVE_OPENCL
#include "modules/dnn/opencl_kernels_dnn.hpp"
#endif
#include "opencl_kernels_dnn.hpp"
namespace
cv
{
...
...
modules/dnn/src/layers/lrn_layer.cpp
View file @
933f53e4
...
...
@@ -42,7 +42,7 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "lrn_layer.hpp"
#include "
modules/dnn/
opencl_kernels_dnn.hpp"
#include "opencl_kernels_dnn.hpp"
#include <opencv2/imgproc.hpp>
#include <opencv2/core/ocl.hpp>
#include <opencv2/dnn/shape_utils.hpp>
...
...
modules/dnn/src/layers/softmax_layer.cpp
View file @
933f53e4
...
...
@@ -43,7 +43,7 @@
#include "layers_common.hpp"
#include "softmax_layer.hpp"
#include <opencv2/core/ocl.hpp>
#include "
modules/dnn/
opencl_kernels_dnn.hpp"
#include "opencl_kernels_dnn.hpp"
#include <algorithm>
#include <stdlib.h>
using
std
::
max
;
...
...
modules/dnn/src/tensorflow/tf_importer.cpp
View file @
933f53e4
...
...
@@ -9,7 +9,7 @@
Implementation of Tensorflow models parser
*/
#include "precomp.hpp"
#include "
../
precomp.hpp"
using
namespace
cv
;
using
namespace
cv
::
dnn
;
...
...
modules/dnn/src/torch/THGeneral.cpp
View file @
933f53e4
#if defined(ENABLE_TORCH_IMPORTER) && ENABLE_TORCH_IMPORTER
#include "THGeneral.h"
#include <opencv2/core.hpp>
extern
"C"
{
#ifndef TH_HAVE_THREAD
#define __thread
#endif
#if defined(TH_DISABLE_HEAP_TRACKING)
#elif (defined(__unix) || defined(_WIN32))
#include <malloc.h>
...
...
@@ -16,6 +8,15 @@ extern "C"
#include <malloc/malloc.h>
#endif
#include "THGeneral.h"
extern
"C"
{
#ifndef TH_HAVE_THREAD
#define __thread
#endif
/* Torch Error Handling */
static
void
defaultTorchErrorHandlerFunction
(
const
char
*
msg
,
void
*
)
{
...
...
modules/dpm/src/precomp.cpp
deleted
100644 → 0
View file @
0514c1f0
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2015, Itseez Inc, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Itseez Inc or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "precomp.hpp"
/* End of file. */
modules/freetype/CMakeLists.txt
View file @
933f53e4
...
...
@@ -19,7 +19,8 @@ endif()
if
(
FREETYPE_FOUND AND HARFBUZZ_FOUND
)
ocv_define_module
(
freetype opencv_core opencv_imgproc PRIVATE_REQUIRED
${
FREETYPE_LIBRARIES
}
${
HARFBUZZ_LIBRARIES
}
WRAP python
)
ocv_define_module
(
freetype opencv_core opencv_imgproc WRAP python
)
ocv_target_link_libraries
(
${
the_module
}
${
FREETYPE_LIBRARIES
}
${
HARFBUZZ_LIBRARIES
}
)
ocv_include_directories
(
${
FREETYPE_INCLUDE_DIRS
}
${
HARFBUZZ_INCLUDE_DIRS
}
)
else
()
ocv_module_disable
(
freetype
)
...
...
modules/hdf/CMakeLists.txt
View file @
933f53e4
...
...
@@ -31,6 +31,5 @@ ocv_warnings_disable(CMAKE_CXX_FLAGS -Winvalid-offsetof)
set
(
the_description
"Hierarchical Data Format I/O"
)
ocv_define_module
(
hdf opencv_core WRAP python
)
include_directories
(
${
HDF5_INCLUDE_DIRS
}
)
target_link_libraries
(
opencv_hdf
${
HDF5_LIBRARIES
}
)
ocv_target_link_libraries
(
${
the_module
}
${
HDF5_LIBRARIES
}
)
ocv_include_directories
(
${
HDF5_INCLUDE_DIRS
}
)
modules/plot/src/precomp.cpp
deleted
100644 → 0
View file @
0514c1f0
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
//################################################################################
//
// Created by Nuno Moutinho
//
//################################################################################
#include "precomp.hpp"
/* End of file. */
modules/reg/perf/perf_precomp.cpp
deleted
100644 → 0
View file @
0514c1f0
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Copyright (C) 2013, Alfonso Sanchez-Beato, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "perf_precomp.hpp"
modules/reg/src/precomp.cpp
deleted
100644 → 0
View file @
0514c1f0
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
// Copyright (C) 2013, Alfonso Sanchez-Beato, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "precomp.hpp"
modules/reg/test/test_precomp.cpp
deleted
100644 → 0
View file @
0514c1f0
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Copyright (C) 2013, Alfonso Sanchez-Beato, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "test_precomp.hpp"
modules/rgbd/test/test_precomp.cpp
deleted
100644 → 0
View file @
0514c1f0
#include "test_precomp.hpp"
modules/saliency/CMakeLists.txt
View file @
933f53e4
...
...
@@ -3,7 +3,6 @@ if(CV_ICC AND NOT MSVC)
endif
()
set
(
the_description
"Saliency API"
)
set
(
OPENCV_MODULE_IS_PART_OF_WORLD OFF
)
ocv_define_module
(
saliency opencv_imgproc opencv_highgui opencv_features2d WRAP python
)
...
...
modules/saliency/src/BING/CmFile.cpp
View file @
933f53e4
...
...
@@ -39,7 +39,7 @@
//
//M*/
#include "precomp.hpp"
#include "
../
precomp.hpp"
#include "CmFile.hpp"
namespace
cv
...
...
modules/saliency/src/BING/CmShow.cpp
View file @
933f53e4
...
...
@@ -39,7 +39,7 @@
//
//M*/
#include "precomp.hpp"
#include "
../
precomp.hpp"
#include "CmShow.hpp"
#include "opencv2/core.hpp"
#include <opencv2/highgui.hpp>
...
...
modules/saliency/src/BING/FilterTIG.cpp
View file @
933f53e4
...
...
@@ -39,7 +39,7 @@
//
//M*/
#include "precomp.hpp"
#include "
../
precomp.hpp"
#include "CmShow.hpp"
namespace
cv
...
...
modules/saliency/src/BING/ValStructVec.cpp
View file @
933f53e4
...
...
@@ -39,7 +39,7 @@
//
//M*/
#include "precomp.hpp"
#include "
../
precomp.hpp"
namespace
cv
{
...
...
modules/saliency/src/BING/objectnessBING.cpp
View file @
933f53e4
...
...
@@ -39,7 +39,7 @@
//
//M*/
#include "precomp.hpp"
#include "
../
precomp.hpp"
#include "BING/kyheader.hpp"
#include "CmTimer.hpp"
...
...
modules/xfeatures2d/CMakeLists.txt
View file @
933f53e4
set
(
the_description
"Contributed/Experimental Algorithms for Salient 2D Features Detection"
)
ocv_define_module
(
xfeatures2d opencv_core opencv_imgproc opencv_features2d opencv_calib3d opencv_shape opencv_highgui opencv_videoio opencv_ml
OPTIONAL opencv_cudaarithm WRAP python java
)
include
(
cmake/download_vgg.cmake
)
include
(
cmake/download_boostdesc.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/
cmake/download_vgg.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/
cmake/download_boostdesc.cmake
)
modules/xfeatures2d/src/affine_feature2d.cpp
View file @
933f53e4
...
...
@@ -211,7 +211,7 @@ bool calcAffineAdaptation(const Mat & fimage, Elliptic_KeyPoint & keypoint)
float
ratio
=
1
-
q
;
//if ratio == 1 means q == 0 and one axes equals to 0
if
(
!
isnan
(
ratio
)
&&
ratio
!=
1
)
if
(
!
cvIsNaN
(
ratio
)
&&
ratio
!=
1
)
{
//Update U matrix
U
=
U
*
Mk
;
...
...
modules/xfeatures2d/src/pct_signatures/grayscale_bitmap.cpp
View file @
933f53e4
...
...
@@ -57,7 +57,7 @@ References:
ACM, 2010.
*/
#include "precomp.hpp"
#include "
../
precomp.hpp"
#include "grayscale_bitmap.hpp"
...
...
modules/xfeatures2d/src/pct_signatures/pct_clusterizer.cpp
View file @
933f53e4
...
...
@@ -57,7 +57,7 @@ References:
ACM, 2010.
*/
#include "precomp.hpp"
#include "
../
precomp.hpp"
#include "opencv2/core/core_c.h" // <- because CV_REDUCE_SUM was undeclared without it
#include "pct_clusterizer.hpp"
...
...
modules/xfeatures2d/src/pct_signatures/pct_sampler.cpp
View file @
933f53e4
...
...
@@ -57,7 +57,7 @@ References:
ACM, 2010.
*/
#include "precomp.hpp"
#include "
../
precomp.hpp"
#include "pct_sampler.hpp"
...
...
modules/ximgproc/CMakeLists.txt
View file @
933f53e4
set
(
the_description
"Extended image processing module. It includes edge-aware filters and etc."
)
set
(
OPENCV_MODULE_IS_PART_OF_WORLD OFF
)
ocv_define_module
(
ximgproc opencv_imgproc opencv_core opencv_highgui opencv_calib3d WRAP python
)
target_link_libraries
(
opencv_ximgproc
)
modules/xobjdetect/CMakeLists.txt
View file @
933f53e4
set
(
the_description
"Object detection algorithms"
)
ocv_define_module
(
xobjdetect opencv_core opencv_imgproc opencv_highgui opencv_objdetect WRAP python
)
if
(
NOT APPLE_FRAMEWORK
)
add_subdirectory
(
tools
)
add_subdirectory
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/tools
${
CMAKE_CURRENT_BINARY_DIR
}
/
tools
)
endif
()
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