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
bee271a1
Commit
bee271a1
authored
Jan 26, 2012
by
Alexey Spizhevoy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated the stitching module docs
parent
a7e7226a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
2 deletions
+38
-2
motion_estimation.rst
modules/stitching/doc/motion_estimation.rst
+38
-2
No files found.
modules/stitching/doc/motion_estimation.rst
View file @
bee271a1
...
...
@@ -136,6 +136,8 @@ Base class for all camera parameters refinement methods. ::
std::vector<std::pair<int,int> > edges_;
};
.. seealso:: :ocv:class:`detail::Estimator`
detail::BundleAdjusterBase::BundleAdjusterBase
----------------------------------------------
...
...
@@ -147,6 +149,42 @@ Construct a bundle adjuster base instance.
:param num_errs_per_measurement: Number of error terms (components) per match
detail::BundleAdjusterBase::setUpInitialCameraParams
----------------------------------------------------
Sets initial camera parameter to refine.
.. ocv:function:: void detail::BundleAdjusterBase::setUpInitialCameraParams(const std::vector<CameraParams> &cameras) = 0;
:param cameras: Camera parameters
detail::BundleAdjusterBase::calcError
-------------------------------------
Calculates error vector.
.. ocv:function:: void detail::BundleAdjusterBase::calcError(Mat &err) = 0;
:param err: Error column-vector of length ``total_num_matches * num_errs_per_measurement``
detail::BundleAdjusterBase::calcJacobian
----------------------------------------
Calculates the cost function jacobian.
.. ocv:function:: void detail::BundleAdjusterBase::calcJacobian(Mat &jac) = 0;
:param jac: Jacobian matrix of dimensions ``(total_num_matches * num_errs_per_measurement) x (num_images * num_params_per_cam)``
detail::BundleAdjusterBase::obtainRefinedCameraParams
-----------------------------------------------------
Gets the refined camera parameters.
.. ocv:function:: void detail::BundleAdjusterBase::obtainRefinedCameraParams(std::vector<CameraParams> &cameras) const = 0;
:param cameras: Refined camera parameters
detail::BundleAdjusterReproj
----------------------------
.. ocv:class:: detail::BundleAdjusterReproj
...
...
@@ -201,5 +239,3 @@ Tries to make panorama more horizontal (or verical).
:param rmats: Camera rotation matrices.
:param kind: Correction kind, see :ocv:class:`detail::WaveCorrectKind`.
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