| 738 | namespace cv { namespace gpu |
| 739 | { |
| 740 | void convertTo(const GpuMat& src, GpuMat& dst) |
| 741 | { |
| 742 | gpuFuncTable()->convert(src, dst); |
| 743 | } |
| 744 | |
| 745 | void convertTo(const GpuMat& src, GpuMat& dst, double alpha, double beta, cudaStream_t stream) |
| 746 | { |
no test coverage detected