diff --git a/modules/face/CMakeLists.txt b/modules/face/CMakeLists.txt index cd3aea710..1533e818e 100644 --- a/modules/face/CMakeLists.txt +++ b/modules/face/CMakeLists.txt @@ -4,7 +4,7 @@ ocv_define_module(face opencv_core opencv_objdetect opencv_tracking # estimateRigidTransform() opencv_photo # samples - WRAP python + WRAP python java ) # NOTE: objdetect module is needed for one of the samples diff --git a/modules/img_hash/CMakeLists.txt b/modules/img_hash/CMakeLists.txt index 3e2effab8..3231b3a9f 100644 --- a/modules/img_hash/CMakeLists.txt +++ b/modules/img_hash/CMakeLists.txt @@ -1,3 +1,3 @@ set(the_description "Image hash algorithms") set(OPENCV_MODULE_IS_PART_OF_WORLD OFF) -ocv_define_module(img_hash opencv_imgproc opencv_core WRAP java python) +ocv_define_module(img_hash opencv_imgproc opencv_core WRAP python java) diff --git a/modules/plot/CMakeLists.txt b/modules/plot/CMakeLists.txt index e95f110f3..db5ff1f1d 100644 --- a/modules/plot/CMakeLists.txt +++ b/modules/plot/CMakeLists.txt @@ -1,2 +1,2 @@ set(the_description "Plot function for Mat data.") -ocv_define_module(plot opencv_core opencv_imgproc WRAP python) +ocv_define_module(plot opencv_core opencv_imgproc WRAP python java) diff --git a/modules/ximgproc/CMakeLists.txt b/modules/ximgproc/CMakeLists.txt index 6e163ca76..f6f88bec6 100644 --- a/modules/ximgproc/CMakeLists.txt +++ b/modules/ximgproc/CMakeLists.txt @@ -1,2 +1,2 @@ set(the_description "Extended image processing module. It includes edge-aware filters and etc.") -ocv_define_module(ximgproc opencv_core opencv_imgproc opencv_calib3d opencv_imgcodecs WRAP python) +ocv_define_module(ximgproc opencv_core opencv_imgproc opencv_calib3d opencv_imgcodecs WRAP python java) diff --git a/modules/ximgproc/include/opencv2/ximgproc/fourier_descriptors.hpp b/modules/ximgproc/include/opencv2/ximgproc/fourier_descriptors.hpp index 2467e1208..76962de40 100644 --- a/modules/ximgproc/include/opencv2/ximgproc/fourier_descriptors.hpp +++ b/modules/ximgproc/include/opencv2/ximgproc/fourier_descriptors.hpp @@ -44,7 +44,7 @@ namespace ximgproc { @param dist distance between src and dst after matching. @param fdContour false then src and dst are contours and true src and dst are fourier descriptors. */ - CV_WRAP void estimateTransformation(InputArray src, InputArray dst, OutputArray alphaPhiST, double *dist = 0, bool fdContour = false); + void estimateTransformation(InputArray src, InputArray dst, OutputArray alphaPhiST, double *dist = 0, bool fdContour = false); /** @brief Fit two closed curves using fourier descriptors. More details in @cite PersoonFu1977 and @cite BergerRaghunathan1998 @param src Contour defining first shape. @@ -53,7 +53,7 @@ namespace ximgproc { @param dist distance between src and dst after matching. @param fdContour false then src and dst are contours and true src and dst are fourier descriptors. */ - CV_WRAP void estimateTransformation(InputArray src, InputArray dst, OutputArray alphaPhiST, double &dist , bool fdContour = false); + CV_WRAP void estimateTransformation(InputArray src, InputArray dst, OutputArray alphaPhiST, CV_OUT double &dist , bool fdContour = false); /** @brief set number of Fourier descriptors used in estimateTransformation @param n number of Fourier descriptors equal to number of contour points after resampling. diff --git a/modules/xphoto/CMakeLists.txt b/modules/xphoto/CMakeLists.txt index 3e550a3c8..0213f0ad1 100644 --- a/modules/xphoto/CMakeLists.txt +++ b/modules/xphoto/CMakeLists.txt @@ -1,2 +1,2 @@ set(the_description "Addon to basic photo module") -ocv_define_module(xphoto opencv_core opencv_imgproc WRAP python) +ocv_define_module(xphoto opencv_core opencv_imgproc WRAP python java)