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

Method untransform

CvPlot/inc/CvPlot/core/Transformation.h:38–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 }

Callers 2

unprojectMethod · 0.45
unprojectMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected