| 609 | } |
| 610 | |
| 611 | void cv::gpu::GpuMat::copyTo(GpuMat& m) const |
| 612 | { |
| 613 | CV_DbgAssert(!empty()); |
| 614 | |
| 615 | m.create(size(), type()); |
| 616 | |
| 617 | gpuFuncTable()->copy(*this, m); |
| 618 | } |
| 619 | |
| 620 | void cv::gpu::GpuMat::copyTo(GpuMat& mat, const GpuMat& mask) const |
| 621 | { |
nothing calls this directly
no test coverage detected