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
9e0dee12
Commit
9e0dee12
authored
Mar 27, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11112 from alalek:cmake_src_include_fix
parents
6e13ffe1
6c051a55
Hide whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
45 additions
and
46 deletions
+45
-46
OpenCVCompilerOptimizations.cmake
cmake/OpenCVCompilerOptimizations.cmake
+3
-3
OpenCVModule.cmake
cmake/OpenCVModule.cmake
+0
-1
cl2cpp.cmake
cmake/cl2cpp.cmake
+1
-1
logger.cpp
modules/core/src/logger.cpp
+1
-1
trace.cpp
modules/core/src/trace.cpp
+1
-1
filesystem.cpp
modules/core/src/utils/filesystem.cpp
+1
-1
batch_norm_layer.cpp
modules/dnn/src/layers/batch_norm_layer.cpp
+2
-2
concat_layer.cpp
modules/dnn/src/layers/concat_layer.cpp
+2
-2
convolution_layer.cpp
modules/dnn/src/layers/convolution_layer.cpp
+2
-2
detection_output_layer.cpp
modules/dnn/src/layers/detection_output_layer.cpp
+1
-1
elementwise_layers.cpp
modules/dnn/src/layers/elementwise_layers.cpp
+2
-2
eltwise_layer.cpp
modules/dnn/src/layers/eltwise_layer.cpp
+2
-2
flatten_layer.cpp
modules/dnn/src/layers/flatten_layer.cpp
+1
-1
fully_connected_layer.cpp
modules/dnn/src/layers/fully_connected_layer.cpp
+2
-2
layers_common.hpp
modules/dnn/src/layers/layers_common.hpp
+1
-1
lrn_layer.cpp
modules/dnn/src/layers/lrn_layer.cpp
+2
-2
max_unpooling_layer.cpp
modules/dnn/src/layers/max_unpooling_layer.cpp
+1
-1
padding_layer.cpp
modules/dnn/src/layers/padding_layer.cpp
+1
-1
permute_layer.cpp
modules/dnn/src/layers/permute_layer.cpp
+1
-1
pooling_layer.cpp
modules/dnn/src/layers/pooling_layer.cpp
+2
-2
prior_box_layer.cpp
modules/dnn/src/layers/prior_box_layer.cpp
+1
-1
region_layer.cpp
modules/dnn/src/layers/region_layer.cpp
+1
-1
reshape_layer.cpp
modules/dnn/src/layers/reshape_layer.cpp
+1
-1
scale_layer.cpp
modules/dnn/src/layers/scale_layer.cpp
+2
-2
shift_layer.cpp
modules/dnn/src/layers/shift_layer.cpp
+1
-1
softmax_layer.cpp
modules/dnn/src/layers/softmax_layer.cpp
+2
-2
nms.cpp
modules/dnn/src/nms.cpp
+1
-1
precomp.hpp
modules/viz/src/precomp.hpp
+7
-7
No files found.
cmake/OpenCVCompilerOptimizations.cmake
View file @
9e0dee12
...
...
@@ -743,11 +743,11 @@ endmacro()
macro
(
ocv_add_dispatched_file filename
)
if
(
NOT OPENCV_INITIAL_PASS
)
set
(
__codestr
"
#include
\"
precomp.hpp
\"
#include
\"
${
filename
}
.simd.hpp
\"
#include
\"
${
CMAKE_CURRENT_LIST_DIR
}
/src/
precomp.hpp
\"
#include
\"
${
CMAKE_CURRENT_LIST_DIR
}
/src/
${
filename
}
.simd.hpp
\"
"
)
set
(
__declarations_str
"#define CV_CPU_SIMD_FILENAME
\"
${
filename
}
.simd.hpp
\"
"
)
set
(
__declarations_str
"#define CV_CPU_SIMD_FILENAME
\"
${
CMAKE_CURRENT_LIST_DIR
}
/src/
${
filename
}
.simd.hpp
\"
"
)
set
(
__dispatch_modes
"BASELINE"
)
set
(
__optimizations
"
${
ARGN
}
"
)
...
...
cmake/OpenCVModule.cmake
View file @
9e0dee12
...
...
@@ -700,7 +700,6 @@ endmacro()
macro
(
ocv_module_include_directories
)
ocv_target_include_directories
(
${
the_module
}
"
${
OPENCV_MODULE_
${
the_module
}
_LOCATION
}
/include"
"
${
OPENCV_MODULE_
${
the_module
}
_LOCATION
}
/src"
"
${
CMAKE_CURRENT_BINARY_DIR
}
"
# for precompiled headers
)
ocv_target_include_modules
(
${
the_module
}
${
OPENCV_MODULE_
${
the_module
}
_DEPS
}
${
ARGN
}
)
...
...
cmake/cl2cpp.cmake
View file @
9e0dee12
...
...
@@ -17,7 +17,7 @@ set(nested_namespace_end "}")
set
(
STR_CPP
"// This file is auto-generated. Do not edit!
#include
\"
precomp
.hpp
\"
#include
\"
opencv2/core
.hpp
\"
#include
\"
cvconfig.h
\"
#include
\"
${
OUTPUT_HPP_NAME
}
\"
...
...
modules/core/src/logger.cpp
View file @
9e0dee12
...
...
@@ -2,7 +2,7 @@
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.
#include
<precomp.hpp>
#include
"precomp.hpp"
#include <opencv2/core/utils/configuration.private.hpp>
#include <opencv2/core/utils/logger.hpp>
...
...
modules/core/src/trace.cpp
View file @
9e0dee12
...
...
@@ -2,7 +2,7 @@
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.
#include
<precomp.hpp>
#include
"precomp.hpp"
#include <opencv2/core/utils/trace.hpp>
#include <opencv2/core/utils/trace.private.hpp>
...
...
modules/core/src/utils/filesystem.cpp
View file @
9e0dee12
...
...
@@ -2,7 +2,7 @@
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.
#include "precomp.hpp"
#include "
../
precomp.hpp"
#include <opencv2/core/utils/configuration.private.hpp>
...
...
modules/dnn/src/layers/batch_norm_layer.cpp
View file @
9e0dee12
...
...
@@ -10,8 +10,8 @@ Implementation of Batch Normalization layer.
*/
#include "../precomp.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_halide.hpp"
#include "
../
op_inf_engine.hpp"
#include <opencv2/dnn/shape_utils.hpp>
#ifdef HAVE_OPENCL
...
...
modules/dnn/src/layers/concat_layer.cpp
View file @
9e0dee12
...
...
@@ -42,8 +42,8 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_halide.hpp"
#include "
../
op_inf_engine.hpp"
#ifdef HAVE_OPENCL
#include "opencl_kernels_dnn.hpp"
...
...
modules/dnn/src/layers/convolution_layer.cpp
View file @
9e0dee12
...
...
@@ -42,8 +42,8 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_halide.hpp"
#include "
../
op_inf_engine.hpp"
#include "opencv2/core/hal/hal.hpp"
#include "opencv2/core/hal/intrin.hpp"
#include <iostream>
...
...
modules/dnn/src/layers/detection_output_layer.cpp
View file @
9e0dee12
...
...
@@ -42,7 +42,7 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_inf_engine.hpp"
#include <float.h>
#include <string>
#include "../nms.inl.hpp"
...
...
modules/dnn/src/layers/elementwise_layers.cpp
View file @
9e0dee12
...
...
@@ -42,8 +42,8 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_halide.hpp"
#include "
../
op_inf_engine.hpp"
#include "opencv2/imgproc.hpp"
#include <opencv2/dnn/shape_utils.hpp>
#include <iostream>
...
...
modules/dnn/src/layers/eltwise_layer.cpp
View file @
9e0dee12
...
...
@@ -42,8 +42,8 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_halide.hpp"
#include "
../
op_inf_engine.hpp"
#ifdef HAVE_OPENCL
#include "opencl_kernels_dnn.hpp"
...
...
modules/dnn/src/layers/flatten_layer.cpp
View file @
9e0dee12
...
...
@@ -42,7 +42,7 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_inf_engine.hpp"
#include <float.h>
#include <algorithm>
#include <opencv2/dnn/shape_utils.hpp>
...
...
modules/dnn/src/layers/fully_connected_layer.cpp
View file @
9e0dee12
...
...
@@ -42,8 +42,8 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_halide.hpp"
#include "
../
op_inf_engine.hpp"
#include <opencv2/dnn/shape_utils.hpp>
#ifdef HAVE_OPENCL
...
...
modules/dnn/src/layers/layers_common.hpp
View file @
9e0dee12
...
...
@@ -47,7 +47,7 @@
#define CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY
// dispatched AVX/AVX2 optimizations
#include "
layers
/layers_common.simd.hpp"
#include "
.
/layers_common.simd.hpp"
#include "layers/layers_common.simd_declarations.hpp"
#undef CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY
...
...
modules/dnn/src/layers/lrn_layer.cpp
View file @
9e0dee12
...
...
@@ -42,8 +42,8 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_halide.hpp"
#include "
../
op_inf_engine.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/dnn/shape_utils.hpp"
#include "opencv2/core/hal/hal.hpp"
...
...
modules/dnn/src/layers/max_unpooling_layer.cpp
View file @
9e0dee12
...
...
@@ -11,7 +11,7 @@ Implementation of Batch Normalization layer.
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "
../
op_halide.hpp"
#include <opencv2/dnn/shape_utils.hpp>
#include <iostream>
...
...
modules/dnn/src/layers/padding_layer.cpp
View file @
9e0dee12
...
...
@@ -11,7 +11,7 @@ Implementation of padding layer, which adds paddings to input blob.
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "
../
op_halide.hpp"
#include <vector>
namespace
cv
...
...
modules/dnn/src/layers/permute_layer.cpp
View file @
9e0dee12
...
...
@@ -42,7 +42,7 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_inf_engine.hpp"
#include <float.h>
#include <algorithm>
...
...
modules/dnn/src/layers/pooling_layer.cpp
View file @
9e0dee12
...
...
@@ -43,8 +43,8 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "opencv2/core/hal/intrin.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_halide.hpp"
#include "
../
op_inf_engine.hpp"
#include <float.h>
#include <algorithm>
using
std
::
max
;
...
...
modules/dnn/src/layers/prior_box_layer.cpp
View file @
9e0dee12
...
...
@@ -42,7 +42,7 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_inf_engine.hpp"
#include <float.h>
#include <algorithm>
#include <cmath>
...
...
modules/dnn/src/layers/region_layer.cpp
View file @
9e0dee12
...
...
@@ -43,7 +43,7 @@
#include "../precomp.hpp"
#include <opencv2/dnn/shape_utils.hpp>
#include <opencv2/dnn/all_layers.hpp>
#include "nms.inl.hpp"
#include "
../
nms.inl.hpp"
#ifdef HAVE_OPENCL
#include "opencl_kernels_dnn.hpp"
...
...
modules/dnn/src/layers/reshape_layer.cpp
View file @
9e0dee12
...
...
@@ -42,7 +42,7 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_inf_engine.hpp"
#include <opencv2/dnn/shape_utils.hpp>
namespace
cv
...
...
modules/dnn/src/layers/scale_layer.cpp
View file @
9e0dee12
...
...
@@ -11,8 +11,8 @@ Implementation of Scale layer.
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_halide.hpp"
#include "
../
op_inf_engine.hpp"
#include <opencv2/dnn/shape_utils.hpp>
namespace
cv
...
...
modules/dnn/src/layers/shift_layer.cpp
View file @
9e0dee12
...
...
@@ -10,7 +10,7 @@ Implementation of shift layer, which adds up const values to blob.
*/
#include "../precomp.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_inf_engine.hpp"
#include <opencv2/dnn/shape_utils.hpp>
namespace
cv
...
...
modules/dnn/src/layers/softmax_layer.cpp
View file @
9e0dee12
...
...
@@ -42,8 +42,8 @@
#include "../precomp.hpp"
#include "layers_common.hpp"
#include "op_halide.hpp"
#include "op_inf_engine.hpp"
#include "
../
op_halide.hpp"
#include "
../
op_inf_engine.hpp"
#include <algorithm>
#include <stdlib.h>
using
std
::
max
;
...
...
modules/dnn/src/nms.cpp
View file @
9e0dee12
...
...
@@ -6,7 +6,7 @@
// Third party copyrights are property of their respective owners.
#include "precomp.hpp"
#include
<nms.inl.hpp>
#include
"nms.inl.hpp"
namespace
cv
{
...
...
modules/viz/src/precomp.hpp
View file @
9e0dee12
...
...
@@ -140,13 +140,13 @@
# include <io.h>
/* unlink */
#endif
#include
<vtk/vtkOBJWriter.h>
#include
<vtk/vtkXYZWriter.h>
#include
<vtk/vtkXYZReader.h>
#include
<vtk/vtkCloudMatSink.h>
#include
<vtk/vtkCloudMatSource.h>
#include
<vtk/vtkTrajectorySource.h>
#include
<vtk/vtkImageMatSource.h>
#include
"vtk/vtkOBJWriter.h"
#include
"vtk/vtkXYZWriter.h"
#include
"vtk/vtkXYZReader.h"
#include
"vtk/vtkCloudMatSink.h"
#include
"vtk/vtkCloudMatSource.h"
#include
"vtk/vtkTrajectorySource.h"
#include
"vtk/vtkImageMatSource.h"
#include <opencv2/core.hpp>
...
...
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