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
67a2066c
Commit
67a2066c
authored
Feb 24, 2015
by
Maksim Shabunin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Java and python wrappers for contrib modules
parent
8d8fd17c
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
18 additions
and
21 deletions
+18
-21
CMakeLists.txt
modules/bgsegm/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/bioinspired/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/ccalib/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cvv/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/datasets/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/face/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/latentsvm/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/line_descriptor/CMakeLists.txt
+1
-3
CMakeLists.txt
modules/optflow/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/reg/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/rgbd/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/saliency/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/surface_matching/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/text/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/xfeatures2d/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/ximgproc/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/xobjdetect/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/xphoto/CMakeLists.txt
+1
-2
No files found.
modules/bgsegm/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Background Segmentation Algorithms"
)
ocv_define_module
(
bgsegm opencv_core opencv_imgproc opencv_video opencv_highgui
)
ocv_define_module
(
bgsegm opencv_core opencv_imgproc opencv_video opencv_highgui
WRAP python
)
modules/bioinspired/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Biologically inspired algorithms"
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS -Wundef
)
ocv_define_module
(
bioinspired opencv_core OPTIONAL opencv_highgui opencv_ocl
)
ocv_define_module
(
bioinspired opencv_core OPTIONAL opencv_highgui opencv_ocl
WRAP java
)
modules/ccalib/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Custom Calibration Pattern"
)
ocv_define_module
(
ccalib opencv_core opencv_imgproc opencv_calib3d opencv_features2d
)
ocv_define_module
(
ccalib opencv_core opencv_imgproc opencv_calib3d opencv_features2d
WRAP python
)
modules/cvv/CMakeLists.txt
View file @
67a2066c
...
...
@@ -17,4 +17,4 @@ foreach(dt5_dep Core Gui Widgets)
endforeach
()
set
(
the_description
"Debug visualization framework"
)
ocv_define_module
(
cvv opencv_core opencv_imgproc opencv_features2d
${
CVV_LIBRARIES
}
)
ocv_define_module
(
cvv opencv_core opencv_imgproc opencv_features2d
${
CVV_LIBRARIES
}
WRAP python
)
modules/datasets/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"datasets framework"
)
ocv_define_module
(
datasets opencv_core opencv_face opencv_ml opencv_flann opencv_text
)
ocv_define_module
(
datasets opencv_core opencv_face opencv_ml opencv_flann opencv_text
WRAP python
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4267
)
# flann, Win64
modules/face/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Face recognition etc"
)
ocv_define_module
(
face opencv_core opencv_imgproc
)
ocv_define_module
(
face opencv_core opencv_imgproc
WRAP python
)
modules/latentsvm/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Object Detection"
)
ocv_define_module
(
latentsvm opencv_core opencv_imgproc opencv_objdetect OPTIONAL opencv_highgui
)
ocv_define_module
(
latentsvm opencv_core opencv_imgproc opencv_objdetect OPTIONAL opencv_highgui
WRAP python
)
modules/line_descriptor/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Line descriptor"
)
ocv_define_module
(
line_descriptor opencv_features2d opencv_imgproc opencv_highgui
)
ocv_define_module
(
line_descriptor opencv_features2d opencv_imgproc opencv_highgui WRAP python
)
modules/optflow/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Optical Flow Algorithms"
)
ocv_define_module
(
optflow opencv_core opencv_imgproc opencv_video opencv_highgui
)
ocv_define_module
(
optflow opencv_core opencv_imgproc opencv_video opencv_highgui
WRAP python
)
modules/reg/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Image Registration"
)
ocv_define_module
(
reg opencv_imgproc opencv_core
)
ocv_define_module
(
reg opencv_imgproc opencv_core
WRAP python
)
modules/rgbd/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"RGBD algorithms"
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS -Wundef
)
ocv_define_module
(
rgbd opencv_core opencv_calib3d opencv_highgui opencv_imgproc
)
ocv_define_module
(
rgbd opencv_core opencv_calib3d opencv_highgui opencv_imgproc
WRAP python
)
modules/saliency/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Saliency API"
)
set
(
OPENCV_MODULE_IS_PART_OF_WORLD OFF
)
ocv_define_module
(
saliency opencv_imgproc opencv_highgui opencv_features2d
)
ocv_define_module
(
saliency opencv_imgproc opencv_highgui opencv_features2d
WRAP python
)
modules/surface_matching/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"3D point features"
)
ocv_define_module
(
surface_matching opencv_core opencv_flann
)
ocv_define_module
(
surface_matching opencv_core opencv_flann
WRAP python
)
modules/text/CMakeLists.txt
View file @
67a2066c
...
...
@@ -18,7 +18,7 @@ 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
)
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
}
)
...
...
modules/xfeatures2d/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Contributed/Experimental Algorithms for Salient 2D Features Detection"
)
ocv_define_module
(
xfeatures2d opencv_core opencv_imgproc opencv_features2d opencv_calib3d opencv_shape opencv_highgui opencv_videoio opencv_ml
OPTIONAL opencv_cudaarithm
)
OPTIONAL opencv_cudaarithm
WRAP python
)
modules/ximgproc/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Extended image processing module. It includes edge-aware filters and etc."
)
set
(
OPENCV_MODULE_IS_PART_OF_WORLD OFF
)
ocv_define_module
(
ximgproc opencv_imgproc opencv_core opencv_highgui
)
ocv_define_module
(
ximgproc opencv_imgproc opencv_core opencv_highgui
WRAP python
)
target_link_libraries
(
opencv_ximgproc
)
modules/xobjdetect/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Object detection algorithms"
)
ocv_define_module
(
xobjdetect opencv_core opencv_imgproc opencv_highgui
)
ocv_define_module
(
xobjdetect opencv_core opencv_imgproc opencv_highgui
WRAP python
)
modules/xphoto/CMakeLists.txt
View file @
67a2066c
set
(
the_description
"Addon to basic photo module"
)
ocv_define_module
(
xphoto opencv_core opencv_imgproc OPTIONAL opencv_photo opencv_highgui opencv_photo
)
\ No newline at end of file
ocv_define_module
(
xphoto opencv_core opencv_imgproc OPTIONAL opencv_photo opencv_highgui opencv_photo WRAP python
)
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