| 60 | class LinLogTransformation : public Transformation { |
| 61 | public: |
| 62 | cv::Point2d transform(const cv::Point2d &point)const override { |
| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected