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
9fc1aa01
Commit
9fc1aa01
authored
Nov 10, 2017
by
Suleyman TURKMEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WRAP python java
parent
c521e1d1
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
CMakeLists.txt
modules/face/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/img_hash/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/plot/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/ximgproc/CMakeLists.txt
+1
-1
fourier_descriptors.hpp
...ximgproc/include/opencv2/ximgproc/fourier_descriptors.hpp
+2
-2
CMakeLists.txt
modules/xphoto/CMakeLists.txt
+1
-1
No files found.
modules/face/CMakeLists.txt
View file @
9fc1aa01
...
...
@@ -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
...
...
modules/img_hash/CMakeLists.txt
View file @
9fc1aa01
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
)
modules/plot/CMakeLists.txt
View file @
9fc1aa01
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
)
modules/ximgproc/CMakeLists.txt
View file @
9fc1aa01
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
)
modules/ximgproc/include/opencv2/ximgproc/fourier_descriptors.hpp
View file @
9fc1aa01
...
...
@@ -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.
...
...
modules/xphoto/CMakeLists.txt
View file @
9fc1aa01
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
)
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