class cv::videostab::ToFileMotionWriter

#include <global_motion.hpp>

class ToFileMotionWriter: public cv::videostab::ImageMotionEstimatorBase
{
public:
    // construction

    ToFileMotionWriter(
        const String& path,
        Ptr<ImageMotionEstimatorBase> estimator
        );

    // methods

    virtual
    Mat
    estimate(
        const Mat& frame0,
        const Mat& frame1,
        bool* ok = 0
        );

    virtual
    MotionModel
    motionModel() const;

    virtual
    void
    setMotionModel(MotionModel val);
};

Inherited Members

public:
    // methods

    virtual
    Mat
    estimate(
        const Mat& frame0,
        const Mat& frame1,
        bool* ok = 0
        ) = 0;

    virtual
    MotionModel
    motionModel() const;

    virtual
    void
    setMotionModel(MotionModel val);