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
3ed948a8
Commit
3ed948a8
authored
Aug 26, 2016
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7167 from alalek:modules_deps
parents
e21fed3c
063ac743
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
16 deletions
+14
-16
CMakeLists.txt
modules/highgui/CMakeLists.txt
+1
-1
highgui.hpp
modules/highgui/include/opencv2/highgui.hpp
+4
-0
highgui_c.h
modules/highgui/include/opencv2/highgui/highgui_c.h
+4
-0
precomp.hpp
modules/highgui/src/precomp.hpp
+5
-3
test_precomp.hpp
modules/highgui/test/test_precomp.hpp
+0
-12
No files found.
modules/highgui/CMakeLists.txt
View file @
3ed948a8
set
(
the_description
"High-level GUI and Media I/O"
)
ocv_add_module
(
highgui opencv_imgproc opencv_imgcodecs opencv_videoio WRAP python
)
ocv_add_module
(
highgui opencv_imgproc
OPTIONAL
opencv_imgcodecs opencv_videoio WRAP python
)
# ----------------------------------------------------------------------------
# CMake file for highgui. See root CMakeLists.txt
...
...
modules/highgui/include/opencv2/highgui.hpp
View file @
3ed948a8
...
...
@@ -44,8 +44,12 @@
#define __OPENCV_HIGHGUI_HPP__
#include "opencv2/core.hpp"
#ifdef HAVE_OPENCV_IMGCODECS
#include "opencv2/imgcodecs.hpp"
#endif
#ifdef HAVE_OPENCV_VIDEOIO
#include "opencv2/videoio.hpp"
#endif
/**
@defgroup highgui High-level GUI
...
...
modules/highgui/include/opencv2/highgui/highgui_c.h
View file @
3ed948a8
...
...
@@ -44,8 +44,12 @@
#include "opencv2/core/core_c.h"
#include "opencv2/imgproc/imgproc_c.h"
#ifdef HAVE_OPENCV_IMGCODECS
#include "opencv2/imgcodecs/imgcodecs_c.h"
#endif
#ifdef HAVE_OPENCV_VIDEOIO
#include "opencv2/videoio/videoio_c.h"
#endif
#ifdef __cplusplus
extern
"C"
{
...
...
modules/highgui/src/precomp.hpp
View file @
3ed948a8
...
...
@@ -47,12 +47,14 @@
#include "opencv2/core/utility.hpp"
#include "opencv2/core/private.hpp"
#include "opencv2/imgcodecs.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/imgcodecs/imgcodecs_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>
#include <string.h>
...
...
modules/highgui/test/test_precomp.hpp
View file @
3ed948a8
...
...
@@ -6,16 +6,4 @@
# endif
#endif
#ifndef __OPENCV_TEST_PRECOMP_HPP__
#define __OPENCV_TEST_PRECOMP_HPP__
#include <iostream>
#include "opencv2/ts.hpp"
//#include "opencv2/imgproc.hpp"
//#include "opencv2/imgcodecs.hpp"
//#include "opencv2/highgui.hpp"
//#include "opencv2/imgproc/imgproc_c.h"
//#include "opencv2/core/private.hpp"
#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