mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 22:44:02 +08:00
updated docs
This commit is contained in:
parent
027065a5a1
commit
406f342dc3
@ -18,12 +18,11 @@ Rotation estimator base class. It takes features of all images, pairwise matches
|
||||
public:
|
||||
virtual ~Estimator() {}
|
||||
|
||||
void operator ()(const std::vector<ImageFeatures> &features, const std::vector<MatchesInfo> &pairwise_matches,
|
||||
std::vector<CameraParams> &cameras)
|
||||
{ estimate(features, pairwise_matches, cameras); }
|
||||
bool operator ()(const std::vector<ImageFeatures> &features, const std::vector<MatchesInfo> &pairwise_matches,
|
||||
std::vector<CameraParams> &cameras);
|
||||
|
||||
protected:
|
||||
virtual void estimate(const std::vector<ImageFeatures> &features, const std::vector<MatchesInfo> &pairwise_matches,
|
||||
virtual bool estimate(const std::vector<ImageFeatures> &features, const std::vector<MatchesInfo> &pairwise_matches,
|
||||
std::vector<CameraParams> &cameras) = 0;
|
||||
};
|
||||
|
||||
@ -40,6 +39,8 @@ Estimates camera parameters.
|
||||
|
||||
:param cameras: Estimated camera parameters
|
||||
|
||||
:return: True in case of success, false otherwise
|
||||
|
||||
detail::Estimator::estimate
|
||||
---------------------------
|
||||
|
||||
@ -53,6 +54,8 @@ This method must implement camera parameters estimation logic in order to make t
|
||||
|
||||
:param cameras: Estimated camera parameters
|
||||
|
||||
:return: True in case of success, false otherwise
|
||||
|
||||
detail::HomographyBasedEstimator
|
||||
--------------------------------
|
||||
.. ocv:class:: detail::HomographyBasedEstimator : public detail::Estimator
|
||||
|
Loading…
Reference in New Issue
Block a user