| 26 | return cv::Point2d(outer.x - _rawProjection.innerRect.x, outer.y - _rawProjection.innerRect.y); |
| 27 | } |
| 28 | cv::Point2d innerToOuter(cv::Point2d inner) const { |
| 29 | return cv::Point2d(inner.x + _rawProjection.innerRect.x, inner.y + _rawProjection.innerRect.y); |
| 30 | } |
| 31 | private: |
| 32 | RawProjection _rawProjection; |
| 33 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected