class cv::detail::AffineBasedEstimator

Overview

Affine transformation based estimator. Moreā€¦

#include <motion_estimators.hpp>

class AffineBasedEstimator: public cv::detail::Estimator
{
};

Inherited Members

public:
    // methods

    bool
    operator()(
        const std::vector<ImageFeatures>& features,
        const std::vector<MatchesInfo>& pairwise_matches,
        std::vector<CameraParams>& cameras
        );

protected:
    // methods

    virtual
    bool
    estimate(
        const std::vector<ImageFeatures>& features,
        const std::vector<MatchesInfo>& pairwise_matches,
        std::vector<CameraParams>& cameras
        ) = 0;

Detailed Documentation

Affine transformation based estimator.

This estimator uses pairwise tranformations estimated by matcher to estimate final transformation for each camera.

See also:

cv::detail::HomographyBasedEstimator