Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
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
Commits
ed511625
Commit
ed511625
authored
Oct 16, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix binary compatibility of Java wrappers
parent
42c8a42a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
imgproc.hpp
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
+3
-3
phasecorr.cpp
modules/imgproc/src/phasecorr.cpp
+2
-2
features2d_manual.hpp
modules/java/generator/src/cpp/features2d_manual.hpp
+1
-0
No files found.
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
View file @
ed511625
...
...
@@ -636,10 +636,10 @@ CV_EXPORTS_W void accumulateWeighted( InputArray src, InputOutputArray dst,
//! computes PSNR image/video quality metric
CV_EXPORTS_W
double
PSNR
(
InputArray
src1
,
InputArray
src2
);
CV_EXPORTS
Point2d
phaseCorrelate
(
InputArray
src1
,
InputArray
src2
,
InputArray
window
=
noArray
());
CV_EXPORTS_W
Point2d
phaseCorrelate
(
InputArray
src1
,
InputArray
src2
,
InputArray
window
,
CV_OUT
double
*
response
CV_WRAP_DEFAULT
(
0
));
InputArray
window
=
noArray
());
CV_EXPORTS_W
Point2d
phaseCorrelateRes
(
InputArray
src1
,
InputArray
src2
,
InputArray
window
,
CV_OUT
double
*
response
=
0
);
CV_EXPORTS_W
void
createHanningWindow
(
OutputArray
dst
,
Size
winSize
,
int
type
);
//! type of the threshold operation
...
...
modules/imgproc/src/phasecorr.cpp
View file @
ed511625
...
...
@@ -488,7 +488,7 @@ static Point2d weightedCentroid(InputArray _src, cv::Point peakLocation, cv::Siz
}
cv
::
Point2d
cv
::
phaseCorrelate
(
InputArray
_src1
,
InputArray
_src2
,
InputArray
_window
,
double
*
response
)
cv
::
Point2d
cv
::
phaseCorrelate
Res
(
InputArray
_src1
,
InputArray
_src2
,
InputArray
_window
,
double
*
response
)
{
Mat
src1
=
_src1
.
getMat
();
Mat
src2
=
_src2
.
getMat
();
...
...
@@ -570,7 +570,7 @@ cv::Point2d cv::phaseCorrelate(InputArray _src1, InputArray _src2, InputArray _w
cv
::
Point2d
cv
::
phaseCorrelate
(
InputArray
_src1
,
InputArray
_src2
,
InputArray
_window
)
{
return
phaseCorrelate
(
_src1
,
_src2
,
_window
,
0
);
return
phaseCorrelate
Res
(
_src1
,
_src2
,
_window
,
0
);
}
void
cv
::
createHanningWindow
(
OutputArray
_dst
,
cv
::
Size
winSize
,
int
type
)
...
...
modules/java/generator/src/cpp/features2d_manual.hpp
View file @
ed511625
...
...
@@ -37,6 +37,7 @@ public:
GRIDDETECTOR
=
1000
,
GRIDRETECTOR
=
1000
,
GRID_FAST
=
GRIDDETECTOR
+
FAST
,
GRID_STAR
=
GRIDDETECTOR
+
STAR
,
...
...
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