Searched refs:curFrame (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/modules/cudalegacy/src/ |
D | fgd.cpp | 154 …void calcDiffHistogram(const GpuMat& prevFrame, const GpuMat& curFrame, GpuMat& hist, GpuMat& hist… in calcDiffHistogram() argument 156 typedef void (*func_t)(PtrStepSzb prevFrame, PtrStepSzb curFrame, in calcDiffHistogram() 171 funcs[prevFrame.channels() - 1][curFrame.channels() - 1]( in calcDiffHistogram() 172 prevFrame, curFrame, in calcDiffHistogram() 219 …void calcDiffThreshMask(const GpuMat& prevFrame, const GpuMat& curFrame, Vec3d bestThres, GpuMat& … in calcDiffThreshMask() argument 221 …typedef void (*func_t)(PtrStepSzb prevFrame, PtrStepSzb curFrame, uchar3 bestThres, PtrStepSzb cha… in calcDiffThreshMask() 232 funcs[prevFrame.channels() - 1][curFrame.channels() - 1](prevFrame, curFrame, in calcDiffThreshMask() 238 …void changeDetection(const GpuMat& prevFrame, const GpuMat& curFrame, GpuMat& changeMask, GpuMat& … in changeDetection() argument 240 calcDiffHistogram(prevFrame, curFrame, hist, histBuf); in changeDetection() 258 calcDiffThreshMask(prevFrame, curFrame, bestThres, changeMask); in changeDetection() [all …]
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
D | fgd.cu | 88 …__global__ void calcPartialHistogram(const PtrStepSz<PT> prevFrame, const PtrStep<CT> curFrame, un… in calcPartialHistogram() argument 127 CT curVal = curFrame(y, x); in calcPartialHistogram() 198 void calcDiffHistogram_gpu(PtrStepSzb prevFrame, PtrStepSzb curFrame, in calcDiffHistogram_gpu() argument 207 … (PtrStepSz<PT>)prevFrame, (PtrStepSz<CT>)curFrame, partialBuf0, partialBuf1, partialBuf2); in calcDiffHistogram_gpu() 217 …template void calcDiffHistogram_gpu<uchar3, uchar3>(PtrStepSzb prevFrame, PtrStepSzb curFrame, uns… 218 …template void calcDiffHistogram_gpu<uchar3, uchar4>(PtrStepSzb prevFrame, PtrStepSzb curFrame, uns… 219 …template void calcDiffHistogram_gpu<uchar4, uchar3>(PtrStepSzb prevFrame, PtrStepSzb curFrame, uns… 220 …template void calcDiffHistogram_gpu<uchar4, uchar4>(PtrStepSzb prevFrame, PtrStepSzb curFrame, uns… 226 …__global__ void calcDiffThreshMask(const PtrStepSz<PT> prevFrame, const PtrStep<CT> curFrame, ucha… in calcDiffThreshMask() argument 235 CT curVal = curFrame(y, x); in calcDiffThreshMask() [all …]
|
D | fgd.hpp | 167 void calcDiffHistogram_gpu(cv::cuda::PtrStepSzb prevFrame, cv::cuda::PtrStepSzb curFrame, 173 …void calcDiffThreshMask_gpu(cv::cuda::PtrStepSzb prevFrame, cv::cuda::PtrStepSzb curFrame, uchar3 … 178 void bgfgClassification_gpu(cv::cuda::PtrStepSzb prevFrame, cv::cuda::PtrStepSzb curFrame, 183 void updateBackgroundModel_gpu(cv::cuda::PtrStepSzb prevFrame, cv::cuda::PtrStepSzb curFrame,
|
/external/deqp/framework/qphelper/ |
D | qpCrashHandler.c | 358 int curFrame; in qpCrashHandler_writeCrashInfo() local 364 for (curFrame = 0; curFrame < numInBatch; curFrame++) in qpCrashHandler_writeCrashInfo() 366 BOOL symInfoOk = SymFromAddr(process, (DWORD64)addresses[curFrame], 0, symInfo); in qpCrashHandler_writeCrashInfo() 368 writeInfoFormat(writeInfo, userPtr, " %2d: %p %s%s\n", globalFrameNdx++, addresses[curFrame], in qpCrashHandler_writeCrashInfo()
|
/external/vulkan-validation-layers/demos/ |
D | cube.c | 421 int32_t curFrame; member 1912 demo->curFrame++; in demo_run() 1914 if (demo->frameCount != INT_MAX && demo->curFrame == demo->frameCount) { in demo_run() 2062 demo->curFrame++; in demo_run() 2063 if (demo->frameCount != INT32_MAX && demo->curFrame == demo->frameCount) in demo_run() 2637 demo->curFrame = 0; in demo_init_vk_swapchain()
|