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
da1ac359
Commit
da1ac359
authored
Jul 23, 2014
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2990 from vbystricky:highgui_split2
parents
7bd7c85b
fd51c133
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
6 deletions
+10
-6
CMakeLists.txt
apps/traincascade/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cudev/test/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/highgui/CMakeLists.txt
+1
-1
highgui.hpp
modules/highgui/include/opencv2/highgui.hpp
+2
-0
highgui_c.h
modules/highgui/include/opencv2/highgui/highgui_c.h
+2
-0
CMakeLists.txt
samples/android/native-activity/CMakeLists.txt
+1
-1
CMakeLists.txt
samples/directx/CMakeLists.txt
+1
-1
CMakeLists.txt
samples/gpu/CMakeLists.txt
+1
-1
No files found.
apps/traincascade/CMakeLists.txt
View file @
da1ac359
set
(
OPENCV_TRAINCASCADE_DEPS opencv_core opencv_ml opencv_imgproc opencv_photo opencv_objdetect opencv_imgcodecs opencv_highgui opencv_calib3d opencv_video opencv_features2d
)
set
(
OPENCV_TRAINCASCADE_DEPS opencv_core opencv_ml opencv_imgproc opencv_photo opencv_objdetect opencv_imgcodecs opencv_
videoio opencv_
highgui opencv_calib3d opencv_video opencv_features2d
)
ocv_check_dependencies
(
${
OPENCV_TRAINCASCADE_DEPS
}
)
if
(
NOT OCV_DEPENDENCIES_FOUND
)
...
...
modules/cudev/test/CMakeLists.txt
View file @
da1ac359
set
(
test_deps opencv_cudev opencv_core opencv_imgproc opencv_highgui opencv_ts
${
OPENCV_MODULE_opencv_ts_DEPS
}
)
set
(
test_deps opencv_cudev opencv_core opencv_imgproc opencv_
imgcodecs opencv_videoio opencv_
highgui opencv_ts
${
OPENCV_MODULE_opencv_ts_DEPS
}
)
ocv_check_dependencies
(
${
test_deps
}
)
...
...
modules/highgui/CMakeLists.txt
View file @
da1ac359
set
(
the_description
"High-level GUI and Media I/O"
)
ocv_add_module
(
highgui opencv_imgproc opencv_imgcodecs OPTIONAL opencv_androidcamera
)
ocv_add_module
(
highgui opencv_imgproc opencv_imgcodecs
opencv_videoio
OPTIONAL opencv_androidcamera
)
# ----------------------------------------------------------------------------
# CMake file for highgui. See root CMakeLists.txt
...
...
modules/highgui/include/opencv2/highgui.hpp
View file @
da1ac359
...
...
@@ -44,6 +44,8 @@
#define __OPENCV_HIGHGUI_HPP__
#include "opencv2/core.hpp"
#include "opencv2/imgcodecs.hpp"
#include "opencv2/videoio.hpp"
///////////////////////// graphical user interface //////////////////////////
...
...
modules/highgui/include/opencv2/highgui/highgui_c.h
View file @
da1ac359
...
...
@@ -43,6 +43,8 @@
#define __OPENCV_HIGHGUI_H__
#include "opencv2/core/core_c.h"
#include "opencv2/imgcodecs/imgcodecs_c.h"
#include "opencv2/videoio/videoio_c.h"
#ifdef __cplusplus
extern
"C"
{
...
...
samples/android/native-activity/CMakeLists.txt
View file @
da1ac359
...
...
@@ -3,7 +3,7 @@ set(sample example-native-activity)
if
(
BUILD_FAT_JAVA_LIB
)
set
(
native_deps opencv_java
)
else
()
set
(
native_deps opencv_highgui opencv_imgproc
)
set
(
native_deps opencv_
videoio opencv_imgcodecs opencv_
highgui opencv_imgproc
)
endif
()
add_android_project
(
${
sample
}
"
${
CMAKE_CURRENT_SOURCE_DIR
}
"
LIBRARY_DEPS
${
OpenCV_BINARY_DIR
}
SDK_TARGET 9
${
ANDROID_SDK_TARGET
}
NATIVE_DEPS
${
native_deps
}
)
...
...
samples/directx/CMakeLists.txt
View file @
da1ac359
SET
(
OPENCV_DIRECTX_SAMPLES_REQUIRED_DEPS opencv_core opencv_imgproc opencv_imgcodecs opencv_highgui
)
SET
(
OPENCV_DIRECTX_SAMPLES_REQUIRED_DEPS opencv_core opencv_imgproc opencv_imgcodecs opencv_
videoio opencv_
highgui
)
ocv_check_dependencies
(
${
OPENCV_DIRECTX_SAMPLES_REQUIRED_DEPS
}
)
...
...
samples/gpu/CMakeLists.txt
View file @
da1ac359
SET
(
OPENCV_CUDA_SAMPLES_REQUIRED_DEPS opencv_core opencv_flann opencv_imgproc opencv_imgcodecs opencv_highgui
SET
(
OPENCV_CUDA_SAMPLES_REQUIRED_DEPS opencv_core opencv_flann opencv_imgproc opencv_imgcodecs opencv_
videoio opencv_
highgui
opencv_ml opencv_video opencv_objdetect opencv_features2d
opencv_calib3d opencv_legacy opencv_contrib opencv_cuda
opencv_nonfree opencv_softcascade opencv_superres
...
...
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