Home
last modified time | relevance | path

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

/external/opencv3/modules/superres/src/
Dbtv_l1.cpp605 const Size highResSize(lowResSize.width * scale_, lowResSize.height * scale_); in ocl_process() local
607 resize(src[baseIdx], uhighRes_, highResSize, 0, 0, INTER_LINEAR); // TODO in ocl_process()
610 udiffTerm_.create(highResSize, uhighRes_.type()); in ocl_process()
611 ua_.create(highResSize, uhighRes_.type()); in ocl_process()
612 ub_.create(highResSize, uhighRes_.type()); in ocl_process()
706 const Size highResSize(lowResSize.width * scale_, lowResSize.height * scale_); in process() local
708 resize(src[baseIdx], highRes_, highResSize, 0, 0, INTER_CUBIC); in process()
711 diffTerm_.create(highResSize, highRes_.type()); in process()
712 a_.create(highResSize, highRes_.type()); in process()
713 b_.create(highResSize, highRes_.type()); in process()
Dbtv_l1_cuda.cpp343 const Size highResSize(lowResSize.width * scale_, lowResSize.height * scale_); in process() local
345 cuda::resize(src[baseIdx], highRes_, highResSize, 0, 0, INTER_CUBIC); in process()