Skip to content

Commit be79bcf

Browse files
committed
Merge pull request #1441 from sturkmen72:enable-java
2 parents 3adc7ad + 9fc1aa0 commit be79bcf

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

modules/face/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ocv_define_module(face opencv_core
44
opencv_objdetect
55
opencv_tracking # estimateRigidTransform()
66
opencv_photo # samples
7-
WRAP python
7+
WRAP python java
88
)
99
# NOTE: objdetect module is needed for one of the samples
1010

modules/img_hash/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
set(the_description "Image hash algorithms")
22
set(OPENCV_MODULE_IS_PART_OF_WORLD OFF)
3-
ocv_define_module(img_hash opencv_imgproc opencv_core WRAP java python)
3+
ocv_define_module(img_hash opencv_imgproc opencv_core WRAP python java)

modules/plot/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
set(the_description "Plot function for Mat data.")
2-
ocv_define_module(plot opencv_core opencv_imgproc WRAP python)
2+
ocv_define_module(plot opencv_core opencv_imgproc WRAP python java)

modules/ximgproc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
set(the_description "Extended image processing module. It includes edge-aware filters and etc.")
2-
ocv_define_module(ximgproc opencv_core opencv_imgproc opencv_calib3d opencv_imgcodecs WRAP python)
2+
ocv_define_module(ximgproc opencv_core opencv_imgproc opencv_calib3d opencv_imgcodecs WRAP python java)

modules/ximgproc/include/opencv2/ximgproc/fourier_descriptors.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ namespace ximgproc {
4444
@param dist distance between src and dst after matching.
4545
@param fdContour false then src and dst are contours and true src and dst are fourier descriptors.
4646
*/
47-
CV_WRAP void estimateTransformation(InputArray src, InputArray dst, OutputArray alphaPhiST, double *dist = 0, bool fdContour = false);
47+
void estimateTransformation(InputArray src, InputArray dst, OutputArray alphaPhiST, double *dist = 0, bool fdContour = false);
4848
/** @brief Fit two closed curves using fourier descriptors. More details in @cite PersoonFu1977 and @cite BergerRaghunathan1998
4949
5050
@param src Contour defining first shape.
@@ -53,7 +53,7 @@ namespace ximgproc {
5353
@param dist distance between src and dst after matching.
5454
@param fdContour false then src and dst are contours and true src and dst are fourier descriptors.
5555
*/
56-
CV_WRAP void estimateTransformation(InputArray src, InputArray dst, OutputArray alphaPhiST, double &dist , bool fdContour = false);
56+
CV_WRAP void estimateTransformation(InputArray src, InputArray dst, OutputArray alphaPhiST, CV_OUT double &dist , bool fdContour = false);
5757
/** @brief set number of Fourier descriptors used in estimateTransformation
5858
5959
@param n number of Fourier descriptors equal to number of contour points after resampling.

modules/xphoto/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
set(the_description "Addon to basic photo module")
2-
ocv_define_module(xphoto opencv_core opencv_imgproc WRAP python)
2+
ocv_define_module(xphoto opencv_core opencv_imgproc WRAP python java)

0 commit comments

Comments
 (0)