12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /*M
- #ifndef MAPPERGRADEUCLID_H_
- #define MAPPERGRADEUCLID_H_
- #include "mapper.hpp"
- namespace cv {
- namespace reg {
- /*!
- * Mapper for euclidean motion: rotation plus shift
- */
- class CV_EXPORTS_W MapperGradEuclid: public Mapper
- {
- public:
- CV_WRAP MapperGradEuclid();
- ~MapperGradEuclid();
- 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
|