| 63 | return cv::Point2d(point.x, std::log(point.y)); |
| 64 | } |
| 65 | cv::Point2d untransform(const cv::Point2d &point)const override { |
| 66 | return cv::Point2d(point.x, std::exp(point.y)); |
| 67 | } |
| 68 | std::pair<double, double> transformYLim(std::pair<double, double> ylim)const override{ |
| 69 | return LogLogTransformation::transformLogLim(ylim); |
| 70 | } |
nothing calls this directly
no outgoing calls
no test coverage detected