| 12 | class RenderTarget :public Projection{ |
| 13 | public: |
| 14 | RenderTarget(RawProjection rawProjection, cv::Mat3b &outerMat) |
| 15 | : Projection(rawProjection) |
| 16 | ,_outerMat(outerMat) |
| 17 | ,_innerMat(outerMat(rawProjection.innerRect)){ |
| 18 | } |
| 19 | cv::Mat3b& innerMat(){ |
| 20 | return _innerMat; |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected