Lines Matching refs:coeffs

64 …void buildWarpAffineMaps_gpu(float coeffs[2 * 3], PtrStepSzf xmap, PtrStepSzf ymap, cudaStream_t s…
67 …void warpAffine_gpu(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], …
70 …void buildWarpPerspectiveMaps_gpu(float coeffs[3 * 3], PtrStepSzf xmap, PtrStepSzf ymap, cudaStrea…
73 …ctive_gpu(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[3 * 3], PtrStepSzb…
92 float coeffs[2 * 3]; in buildWarpAffineMaps() local
93 Mat coeffsMat(2, 3, CV_32F, (void*)coeffs); in buildWarpAffineMaps()
104 buildWarpAffineMaps_gpu(coeffs, xmap, ymap, StreamAccessor::getStream(stream)); in buildWarpAffineMaps()
121 float coeffs[3 * 3]; in buildWarpPerspectiveMaps() local
122 Mat coeffsMat(3, 3, CV_32F, (void*)coeffs); in buildWarpPerspectiveMaps()
133 buildWarpPerspectiveMaps_gpu(coeffs, xmap, ymap, StreamAccessor::getStream(stream)); in buildWarpPerspectiveMaps()
143 int dstStep, NppiRect dstRoi, const double coeffs[][3],
151 …static void call(const cv::cuda::GpuMat& src, cv::cuda::GpuMat& dst, double coeffs[][3], int inter… in call()
175 coeffs, npp_inter[interpolation]) ); in call()
249 …typedef void (*func_t)(const cv::cuda::GpuMat& src, cv::cuda::GpuMat& dst, double coeffs[][3], int… in warpAffine()
273 double coeffs[2][3]; in warpAffine() local
274 Mat coeffsMat(2, 3, CV_64F, (void*)coeffs); in warpAffine()
280 func(src, dst, coeffs, interpolation, StreamAccessor::getStream(stream)); in warpAffine()
286 …(*func_t)(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb… in warpAffine()
302 float coeffs[2 * 3]; in warpAffine() local
303 Mat coeffsMat(2, 3, CV_32F, (void*)coeffs); in warpAffine()
317 …(src, PtrStepSzb(wholeSize.height, wholeSize.width, src.datastart, src.step), ofs.x, ofs.y, coeffs, in warpAffine()
388 …typedef void (*func_t)(const cv::cuda::GpuMat& src, cv::cuda::GpuMat& dst, double coeffs[][3], int… in warpPerspective()
412 double coeffs[3][3]; in warpPerspective() local
413 Mat coeffsMat(3, 3, CV_64F, (void*)coeffs); in warpPerspective()
419 func(src, dst, coeffs, interpolation, StreamAccessor::getStream(stream)); in warpPerspective()
425 …(*func_t)(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb… in warpPerspective()
441 float coeffs[3 * 3]; in warpPerspective() local
442 Mat coeffsMat(3, 3, CV_32F, (void*)coeffs); in warpPerspective()
456 …(src, PtrStepSzb(wholeSize.height, wholeSize.width, src.datastart, src.step), ofs.x, ofs.y, coeffs, in warpPerspective()