12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*M
- #ifndef MAPPERGRADSHIFT_H_
- #define MAPPERGRADSHIFT_H_
- #include "mapper.hpp"
- namespace cv {
- namespace reg {
- /*!
- * Gradient mapper for a translation
- */
- class CV_EXPORTS_W MapperGradShift: public Mapper
- {
- public:
- CV_WRAP MapperGradShift();
- virtual ~MapperGradShift();
- CV_WRAP virtual cv::Ptr<Map> calculate(InputArray img1, InputArray img2, cv::Ptr<Map> init = cv::Ptr<Map>()) const CV_OVERRIDE;
- CV_WRAP cv::Ptr<Map> getMap() const CV_OVERRIDE;
- };
- }}
- #endif
|