• Home
  • Raw
  • Download

Lines Matching refs:superRes

139         Ptr<SuperResolution> superRes = createSuperResolution_BTVL1_CUDA();  in PERF_TEST_P()  local
141 superRes->setScale(scale); in PERF_TEST_P()
142 superRes->setIterations(iterations); in PERF_TEST_P()
143 superRes->setTemporalAreaRadius(temporalAreaRadius); in PERF_TEST_P()
144 superRes->setOpticalFlow(opticalFlow); in PERF_TEST_P()
146 superRes->setInput(makePtr<OneFrameSource_CUDA>(GpuMat(frame))); in PERF_TEST_P()
149 superRes->nextFrame(dst); in PERF_TEST_P()
151 TEST_CYCLE_N(10) superRes->nextFrame(dst); in PERF_TEST_P()
157 Ptr<SuperResolution> superRes = createSuperResolution_BTVL1(); in PERF_TEST_P() local
159 superRes->setScale(scale); in PERF_TEST_P()
160 superRes->setIterations(iterations); in PERF_TEST_P()
161 superRes->setTemporalAreaRadius(temporalAreaRadius); in PERF_TEST_P()
162 superRes->setOpticalFlow(opticalFlow); in PERF_TEST_P()
164 superRes->setInput(makePtr<OneFrameSource_CPU>(frame)); in PERF_TEST_P()
167 superRes->nextFrame(dst); in PERF_TEST_P()
169 TEST_CYCLE_N(10) superRes->nextFrame(dst); in PERF_TEST_P()
199 Ptr<SuperResolution> superRes = createSuperResolution_BTVL1(); in OCL_PERF_TEST_P() local
201 superRes->setScale(scale); in OCL_PERF_TEST_P()
202 superRes->setIterations(iterations); in OCL_PERF_TEST_P()
203 superRes->setTemporalAreaRadius(temporalAreaRadius); in OCL_PERF_TEST_P()
204 superRes->setOpticalFlow(opticalFlow); in OCL_PERF_TEST_P()
206 superRes->setInput(makePtr<OneFrameSource_CPU>(frame)); in OCL_PERF_TEST_P()
209 superRes->nextFrame(dst); in OCL_PERF_TEST_P()
211 OCL_TEST_CYCLE_N(10) superRes->nextFrame(dst); in OCL_PERF_TEST_P()