Lines Matching refs:GpuMat
78 void absMat(const GpuMat& src, const GpuMat& dst, Stream& stream) in absMat()
86 typedef void (*func_t)(const GpuMat& src, const GpuMat& dst, Stream& stream); in abs()
98 GpuMat src = getInputMat(_src, stream); in abs()
102 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in abs()
123 void sqrMat(const GpuMat& src, const GpuMat& dst, Stream& stream) in sqrMat()
131 typedef void (*func_t)(const GpuMat& src, const GpuMat& dst, Stream& stream); in sqr()
143 GpuMat src = getInputMat(_src, stream); in sqr()
147 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in sqr()
160 void sqrtMat(const GpuMat& src, const GpuMat& dst, Stream& stream) in sqrtMat()
168 typedef void (*func_t)(const GpuMat& src, const GpuMat& dst, Stream& stream); in sqrt()
180 GpuMat src = getInputMat(_src, stream); in sqrt()
184 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in sqrt()
206 void expMat(const GpuMat& src, const GpuMat& dst, Stream& stream) in expMat()
214 typedef void (*func_t)(const GpuMat& src, const GpuMat& dst, Stream& stream); in exp()
226 GpuMat src = getInputMat(_src, stream); in exp()
230 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in exp()
243 void logMat(const GpuMat& src, const GpuMat& dst, Stream& stream) in logMat()
251 typedef void (*func_t)(const GpuMat& src, const GpuMat& dst, Stream& stream); in log()
263 GpuMat src = getInputMat(_src, stream); in log()
267 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in log()
322 void powMat(const GpuMat& src, double power, const GpuMat& dst, Stream& stream) in powMat()
333 typedef void (*func_t)(const GpuMat& src, double power, const GpuMat& dst, Stream& stream); in pow()
345 GpuMat src = getInputMat(_src, stream); in pow()
349 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream); in pow()