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
9333f82b
Commit
9333f82b
authored
8 years ago
by
Maksim Shabunin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce dependencies between modules
parent
246d3761
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
7 additions
and
17 deletions
+7
-17
CMakeLists.txt
modules/features2d/CMakeLists.txt
+1
-1
test_precomp.hpp
modules/features2d/test/test_precomp.hpp
+0
-1
CMakeLists.txt
modules/highgui/CMakeLists.txt
+1
-1
precomp.hpp
modules/highgui/src/precomp.hpp
+0
-2
CMakeLists.txt
modules/java/pure_test/CMakeLists.txt
+3
-1
CMakeLists.txt
modules/objdetect/CMakeLists.txt
+1
-1
precomp.hpp
modules/objdetect/src/precomp.hpp
+0
-8
CMakeLists.txt
modules/stitching/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/superres/CMakeLists.txt
+0
-1
No files found.
modules/features2d/CMakeLists.txt
View file @
9333f82b
set
(
the_description
"2D Features Framework"
)
ocv_define_module
(
features2d opencv_imgproc opencv_
ml opencv_
flann OPTIONAL opencv_highgui WRAP java python
)
ocv_define_module
(
features2d opencv_imgproc opencv_flann OPTIONAL opencv_highgui WRAP java python
)
This diff is collapsed.
Click to expand it.
modules/features2d/test/test_precomp.hpp
View file @
9333f82b
...
...
@@ -13,7 +13,6 @@
#include "opencv2/imgproc.hpp"
#include "opencv2/features2d.hpp"
#include "opencv2/imgcodecs.hpp"
#include "opencv2/ml.hpp"
#include <iostream>
#endif
This diff is collapsed.
Click to expand it.
modules/highgui/CMakeLists.txt
View file @
9333f82b
set
(
the_description
"High-level GUI and Media I/O"
)
ocv_add_module
(
highgui opencv_imgproc
OPTIONAL opencv_imgcodecs
opencv_videoio WRAP python
)
ocv_add_module
(
highgui opencv_imgproc
opencv_imgcodecs OPTIONAL
opencv_videoio WRAP python
)
# ----------------------------------------------------------------------------
# CMake file for highgui. See root CMakeLists.txt
...
...
This diff is collapsed.
Click to expand it.
modules/highgui/src/precomp.hpp
View file @
9333f82b
...
...
@@ -50,10 +50,8 @@
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/highgui/highgui_c.h"
#ifdef HAVE_OPENCV_IMGCODECS
#include "opencv2/imgcodecs.hpp"
#include "opencv2/imgcodecs/imgcodecs_c.h"
#endif
#include <stdlib.h>
#include <stdio.h>
...
...
This diff is collapsed.
Click to expand it.
modules/java/pure_test/CMakeLists.txt
View file @
9333f82b
if
(
NOT ANT_EXECUTABLE
)
if
(
NOT ANT_EXECUTABLE
OR NOT BUILD_opencv_imgcodecs
OR NOT BUILD_opencv_calib3d
)
return
()
endif
()
...
...
This diff is collapsed.
Click to expand it.
modules/objdetect/CMakeLists.txt
View file @
9333f82b
set
(
the_description
"Object Detection"
)
ocv_define_module
(
objdetect opencv_core opencv_imgproc
opencv_ml OPTIONAL opencv_highgui
WRAP java python
)
ocv_define_module
(
objdetect opencv_core opencv_imgproc WRAP java python
)
This diff is collapsed.
Click to expand it.
modules/objdetect/src/precomp.hpp
View file @
9333f82b
...
...
@@ -46,16 +46,8 @@
#include "opencv2/objdetect.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/ml.hpp"
#include "opencv2/core/utility.hpp"
#include "opencv2/core/ocl.hpp"
#include "opencv2/opencv_modules.hpp"
#ifdef HAVE_OPENCV_HIGHGUI
# include "opencv2/highgui.hpp"
#endif
#include "opencv2/core/private.hpp"
#ifdef HAVE_TEGRA_OPTIMIZATION
...
...
This diff is collapsed.
Click to expand it.
modules/stitching/CMakeLists.txt
View file @
9333f82b
...
...
@@ -8,6 +8,6 @@ set(STITCHING_CONTRIB_DEPS "opencv_xfeatures2d")
if
(
BUILD_SHARED_LIBS AND BUILD_opencv_world AND OPENCV_WORLD_EXCLUDE_EXTRA_MODULES
)
set
(
STITCHING_CONTRIB_DEPS
""
)
endif
()
ocv_define_module
(
stitching opencv_imgproc opencv_features2d opencv_calib3d
opencv_objdetect
ocv_define_module
(
stitching opencv_imgproc opencv_features2d opencv_calib3d
OPTIONAL opencv_cudaarithm opencv_cudafilters opencv_cudafeatures2d opencv_cudalegacy
${
STITCHING_CONTRIB_DEPS
}
WRAP python
)
This diff is collapsed.
Click to expand it.
modules/superres/CMakeLists.txt
View file @
9333f82b
...
...
@@ -3,7 +3,6 @@ if(IOS OR WINRT)
endif
()
set
(
the_description
"Super Resolution"
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4127 -Wundef -Wshadow
)
ocv_define_module
(
superres opencv_imgproc opencv_video
OPTIONAL opencv_videoio opencv_cudaarithm opencv_cudafilters opencv_cudawarping opencv_cudaimgproc opencv_cudaoptflow opencv_cudacodec
WRAP python
)
This diff is collapsed.
Click to expand it.
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