Java and python wrappers for contrib modules

pull/178/head
Maksim Shabunin 10 years ago
parent 8d8fd17cf6
commit 67a2066c4b
  1. 2
      modules/bgsegm/CMakeLists.txt
  2. 2
      modules/bioinspired/CMakeLists.txt
  3. 2
      modules/ccalib/CMakeLists.txt
  4. 2
      modules/cvv/CMakeLists.txt
  5. 2
      modules/datasets/CMakeLists.txt
  6. 2
      modules/face/CMakeLists.txt
  7. 2
      modules/latentsvm/CMakeLists.txt
  8. 4
      modules/line_descriptor/CMakeLists.txt
  9. 2
      modules/optflow/CMakeLists.txt
  10. 2
      modules/reg/CMakeLists.txt
  11. 2
      modules/rgbd/CMakeLists.txt
  12. 2
      modules/saliency/CMakeLists.txt
  13. 2
      modules/surface_matching/CMakeLists.txt
  14. 2
      modules/text/CMakeLists.txt
  15. 2
      modules/xfeatures2d/CMakeLists.txt
  16. 2
      modules/ximgproc/CMakeLists.txt
  17. 2
      modules/xobjdetect/CMakeLists.txt
  18. 2
      modules/xphoto/CMakeLists.txt

@ -1,2 +1,2 @@
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)

@ -1,3 +1,3 @@
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)

@ -1,2 +1,2 @@
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)

@ -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)

@ -1,4 +1,4 @@
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

@ -1,2 +1,2 @@
set(the_description "Face recognition etc")
ocv_define_module(face opencv_core opencv_imgproc)
ocv_define_module(face opencv_core opencv_imgproc WRAP python)

@ -1,2 +1,2 @@
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)

@ -1,4 +1,2 @@
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)

@ -1,2 +1,2 @@
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)

@ -1,2 +1,2 @@
set(the_description "Image Registration")
ocv_define_module(reg opencv_imgproc opencv_core)
ocv_define_module(reg opencv_imgproc opencv_core WRAP python)

@ -1,3 +1,3 @@
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)

@ -1,3 +1,3 @@
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)

@ -1,2 +1,2 @@
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)

@ -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})

@ -1,3 +1,3 @@
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)

@ -1,5 +1,5 @@
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)

@ -1,2 +1,2 @@
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)

@ -1,2 +1,2 @@
set(the_description "Addon to basic photo module")
ocv_define_module(xphoto opencv_core opencv_imgproc OPTIONAL opencv_photo opencv_highgui opencv_photo)
ocv_define_module(xphoto opencv_core opencv_imgproc OPTIONAL opencv_photo opencv_highgui opencv_photo WRAP python)

Loading…
Cancel
Save