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
7d238cfc
Commit
7d238cfc
authored
Sep 27, 2016
by
baisheng lai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revise omnidir::calibrate API (InputArray to InpurArrayOfArray) so that Python bindings will work
parent
bf9dd72f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
omnidir.hpp
modules/ccalib/include/opencv2/ccalib/omnidir.hpp
+1
-1
omnidir.cpp
modules/ccalib/src/omnidir.cpp
+1
-1
No files found.
modules/ccalib/include/opencv2/ccalib/omnidir.hpp
View file @
7d238cfc
...
...
@@ -168,7 +168,7 @@ namespace omnidir
@param idx Indices of images that pass initialization, which are really used in calibration. So the size of rvecs is the
same as idx.total().
*/
CV_EXPORTS_W
double
calibrate
(
InputArray
objectPoints
,
InputArray
imagePoints
,
Size
size
,
CV_EXPORTS_W
double
calibrate
(
InputArray
OfArrays
objectPoints
,
InputArrayOfArrays
imagePoints
,
Size
size
,
InputOutputArray
K
,
InputOutputArray
xi
,
InputOutputArray
D
,
OutputArrayOfArrays
rvecs
,
OutputArrayOfArrays
tvecs
,
int
flags
,
TermCriteria
criteria
,
OutputArray
idx
=
noArray
());
...
...
modules/ccalib/src/omnidir.cpp
View file @
7d238cfc
...
...
@@ -1058,7 +1058,7 @@ void cv::omnidir::internal::compose_motion(InputArray _om1, InputArray _T1, Inpu
dT3dom1
=
Mat
::
zeros
(
3
,
3
,
CV_64FC1
);
}
double
cv
::
omnidir
::
calibrate
(
InputArray
patternPoints
,
InputArray
imagePoints
,
Size
size
,
double
cv
::
omnidir
::
calibrate
(
InputArray
OfArrays
patternPoints
,
InputArrayOfArrays
imagePoints
,
Size
size
,
InputOutputArray
K
,
InputOutputArray
xi
,
InputOutputArray
D
,
OutputArrayOfArrays
omAll
,
OutputArrayOfArrays
tAll
,
int
flags
,
TermCriteria
criteria
,
OutputArray
idx
)
{
...
...
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