| 76 | return cv::Point2d(std::log(point.x), point.y); |
| 77 | } |
| 78 | cv::Point2d untransform(const cv::Point2d &point)const override { |
| 79 | return cv::Point2d(std::exp(point.x), point.y); |
| 80 | } |
| 81 | std::pair<double, double> transformXLim(std::pair<double, double> xlim)const override { |
| 82 | return LogLogTransformation::transformLogLim(xlim); |
| 83 | } |
nothing calls this directly
no outgoing calls
no test coverage detected