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