| 36 | return cv::Point2d(std::log(point.x), std::log(point.y)); |
| 37 | } |
| 38 | cv::Point2d untransform(const cv::Point2d &point)const override { |
| 39 | return cv::Point2d(std::exp(point.x), std::exp(point.y)); |
| 40 | } |
| 41 | std::pair<double, double> transformXLim(std::pair<double, double> xlim)const override { |
| 42 | return LogLogTransformation::transformLogLim(xlim); |
| 43 | } |