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