| 37 | |
| 38 | template<typename T> |
| 39 | array perspectiveTransform(dim4 inDims, array H) { |
| 40 | T d0 = (T)inDims[0]; |
| 41 | T d1 = (T)inDims[1]; |
| 42 | return transformCoordinates(H, d0, d1); |
| 43 | } |
| 44 | |
| 45 | template<typename T> |
| 46 | void homographyTest(string pTestFile, const af_homography_type htype, |
nothing calls this directly
no test coverage detected