Home
last modified time | relevance | path

Searched refs:highResMotions (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/superres/src/
Dbtv_l1_cuda.cpp118 …uMat, GpuMat> >& lowResMotions, std::vector<std::pair<GpuMat, GpuMat> >& highResMotions, int scale) in upscaleMotions() argument
120 highResMotions.resize(lowResMotions.size()); in upscaleMotions()
124 … cuda::resize(lowResMotions[i].first, highResMotions[i].first, Size(), scale, scale, INTER_CUBIC); in upscaleMotions()
125 …cuda::resize(lowResMotions[i].second, highResMotions[i].second, Size(), scale, scale, INTER_CUBIC); in upscaleMotions()
127 cuda::multiply(highResMotions[i].first, Scalar::all(scale), highResMotions[i].first); in upscaleMotions()
128 cuda::multiply(highResMotions[i].second, Scalar::all(scale), highResMotions[i].second); in upscaleMotions()
Dbtv_l1.cpp134 & highResMotions = *(std::vector<UMat> *)_highResMotions.getObj(); in ocl_upscaleMotions() local
136 highResMotions.resize(lowResMotions.size()); in ocl_upscaleMotions()
140 resize(lowResMotions[i], highResMotions[i], Size(), scale, scale, INTER_LINEAR); // TODO in ocl_upscaleMotions()
141 multiply(highResMotions[i], Scalar::all(scale), highResMotions[i]); in ocl_upscaleMotions()
155 & highResMotions = *(std::vector<Mat> *)_highResMotions.getObj(); in upscaleMotions()
157 highResMotions.resize(lowResMotions.size()); in upscaleMotions()
161 resize(lowResMotions[i], highResMotions[i], Size(), scale, scale, INTER_CUBIC); in upscaleMotions()
162 multiply(highResMotions[i], Scalar::all(scale), highResMotions[i]); in upscaleMotions()