Commit 9fc1aa01 authored by Suleyman TURKMEN's avatar Suleyman TURKMEN

WRAP python java

parent c521e1d1
...@@ -4,7 +4,7 @@ ocv_define_module(face opencv_core ...@@ -4,7 +4,7 @@ ocv_define_module(face opencv_core
opencv_objdetect opencv_objdetect
opencv_tracking # estimateRigidTransform() opencv_tracking # estimateRigidTransform()
opencv_photo # samples opencv_photo # samples
WRAP python WRAP python java
) )
# NOTE: objdetect module is needed for one of the samples # NOTE: objdetect module is needed for one of the samples
......
set(the_description "Image hash algorithms") set(the_description "Image hash algorithms")
set(OPENCV_MODULE_IS_PART_OF_WORLD OFF) 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)
set(the_description "Plot function for Mat data.") 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)
set(the_description "Extended image processing module. It includes edge-aware filters and etc.") 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)
...@@ -44,7 +44,7 @@ namespace ximgproc { ...@@ -44,7 +44,7 @@ namespace ximgproc {
@param dist distance between src and dst after matching. @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. @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 /** @brief Fit two closed curves using fourier descriptors. More details in @cite PersoonFu1977 and @cite BergerRaghunathan1998
@param src Contour defining first shape. @param src Contour defining first shape.
...@@ -53,7 +53,7 @@ namespace ximgproc { ...@@ -53,7 +53,7 @@ namespace ximgproc {
@param dist distance between src and dst after matching. @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. @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 /** @brief set number of Fourier descriptors used in estimateTransformation
@param n number of Fourier descriptors equal to number of contour points after resampling. @param n number of Fourier descriptors equal to number of contour points after resampling.
......
set(the_description "Addon to basic photo module") 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)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment