MCPcopy Create free account
hub / github.com/Profactor/cv-plot / untransform

Method untransform

CvPlot/inc/CvPlot/core/Transformation.h:65–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected