12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*M
- #ifndef MAPPERGRADAFFINE_H_
- #define MAPPERGRADAFFINE_H_
- #include "mapper.hpp"
- namespace cv {
- namespace reg {
- /*!
- * Mapper for affine motion
- */
- class CV_EXPORTS MapperGradAffine: public Mapper
- {
- public:
- MapperGradAffine(void);
- ~MapperGradAffine(void);
- virtual void calculate(const cv::Mat& img1, const cv::Mat& img2, cv::Ptr<Map>& res) const;
- cv::Ptr<Map> getMap(void) const;
- };
- }}
- #endif
|