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
46dd2631
Commit
46dd2631
authored
Apr 19, 2016
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #632 from StevenPuttemans:remove_redundant_CMAKE_check
parents
0c241990
dd33354f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
CMakeLists.txt
modules/cnn_3dobj/CMakeLists.txt
+2
-2
CMakeLists.txt
modules/cvv/CMakeLists.txt
+3
-3
CMakeLists.txt
modules/hdf/CMakeLists.txt
+3
-3
CMakeLists.txt
modules/text/CMakeLists.txt
+3
-3
No files found.
modules/cnn_3dobj/CMakeLists.txt
View file @
46dd2631
...
...
@@ -33,8 +33,8 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
if
(
${
Caffe_FOUND
}
)
include_directories
(
${
Caffe_INCLUDE_DIR
}
)
endif
()
set
(
the_description
"CNN for 3D object recognition and pose estimation including a completed Sphere View on 3D objects"
)
ocv_define_module
(
cnn_3dobj opencv_core opencv_imgproc opencv_viz opencv_highgui OPTIONAL WRAP python
)
set
(
the_description
"CNN for 3D object recognition and pose estimation including a completed Sphere View on 3D objects"
)
ocv_define_module
(
cnn_3dobj opencv_core opencv_imgproc opencv_viz opencv_highgui OPTIONAL WRAP python
)
if
(
${
Caffe_FOUND
}
)
target_link_libraries
(
opencv_cnn_3dobj
${
Caffe_LIBS
}
${
Glog_LIBS
}
${
Protobuf_LIBS
}
)
...
...
modules/cvv/CMakeLists.txt
View file @
46dd2631
...
...
@@ -3,6 +3,9 @@ if(NOT HAVE_QT5)
return
()
endif
()
set
(
the_description
"Debug visualization framework"
)
ocv_define_module
(
cvv opencv_core opencv_imgproc opencv_features2d
${
CVV_LIBRARIES
}
WRAP python
)
# we need C++11 and want warnings:
if
(
MSVC
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
/Qstd=c++11 /W4"
)
...
...
@@ -20,6 +23,3 @@ foreach(dt5_dep Core Gui Widgets)
include_directories
(
${
Qt5
${
dt5_dep
}
_INCLUDE_DIRS
}
)
list
(
APPEND CVV_LIBRARIES
${
Qt5
${
dt5_dep
}
_LIBRARIES
}
)
endforeach
()
set
(
the_description
"Debug visualization framework"
)
ocv_define_module
(
cvv opencv_core opencv_imgproc opencv_features2d
${
CVV_LIBRARIES
}
WRAP python
)
modules/hdf/CMakeLists.txt
View file @
46dd2631
...
...
@@ -27,13 +27,13 @@ else()
message
(
STATUS
"HDF5: NO"
)
endif
()
set
(
the_description
"Hierarchical Data Format I/O"
)
ocv_define_module
(
hdf opencv_core WRAP python
)
if
(
HDF5_FOUND
)
include_directories
(
${
HDF5_INCLUDE_DIRS
}
)
endif
()
set
(
the_description
"Hierarchical Data Format I/O"
)
ocv_define_module
(
hdf opencv_core WRAP python
)
if
(
HDF5_FOUND
)
target_link_libraries
(
opencv_hdf
${
HDF5_LIBRARIES
}
)
endif
()
modules/text/CMakeLists.txt
View file @
46dd2631
set
(
the_description
"Text Detection and Recognition"
)
ocv_define_module
(
text opencv_ml opencv_highgui opencv_imgproc opencv_core opencv_features2d WRAP python
)
set
(
CMAKE_MODULE_PATH
${
CMAKE_MODULE_PATH
}
${
CMAKE_CURRENT_SOURCE_DIR
}
)
find_package
(
Tesseract
)
...
...
@@ -17,9 +20,6 @@ if(${Tesseract_FOUND})
include_directories
(
${
Tesseract_INCLUDE_DIR
}
)
endif
()
set
(
the_description
"Text Detection and Recognition"
)
ocv_define_module
(
text opencv_ml opencv_highgui opencv_imgproc opencv_core opencv_features2d WRAP python
)
if
(
${
Tesseract_FOUND
}
)
target_link_libraries
(
opencv_text
${
Tesseract_LIBS
}
)
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