OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bestThres
(Results
1 - 4
of
4
) sorted by null
/external/opencv3/modules/cudalegacy/src/
fgd.cpp
219
void calcDiffThreshMask(const GpuMat& prevFrame, const GpuMat& curFrame, Vec3d
bestThres
, GpuMat& changeMask)
221
typedef void (*func_t)(PtrStepSzb prevFrame, PtrStepSzb curFrame, uchar3
bestThres
, PtrStepSzb changeMask, cudaStream_t stream);
233
make_uchar3((uchar)
bestThres
[0], (uchar)
bestThres
[1], (uchar)
bestThres
[2]),
250
Vec3d
bestThres
(10.0, 10.0, 10.0);
253
bestThres
[0] = std::max(
bestThres
[0], relativeVariance[0][i]);
254
bestThres
[1] = std::max(
bestThres
[1], relativeVariance[1][i])
[
all
...]
/external/opencv3/modules/cudalegacy/src/cuda/
fgd.cu
226
__global__ void calcDiffThreshMask(const PtrStepSz<PT> prevFrame, const PtrStep<CT> curFrame, uchar3
bestThres
, PtrStepb changeMask)
243
if (diff.x >
bestThres
.x || diff.y >
bestThres
.y || diff.z >
bestThres
.z)
248
void calcDiffThreshMask_gpu(PtrStepSzb prevFrame, PtrStepSzb curFrame, uchar3
bestThres
, PtrStepSzb changeMask, cudaStream_t stream)
253
calcDiffThreshMask<PT, CT><<<grid, block, 0, stream>>>((PtrStepSz<PT>)prevFrame, (PtrStepSz<CT>)curFrame,
bestThres
, changeMask);
260
template void calcDiffThreshMask_gpu<uchar3, uchar3>(PtrStepSzb prevFrame, PtrStepSzb curFrame, uchar3
bestThres
, PtrStepSzb changeMask, cudaStream_t stream);
261
template void calcDiffThreshMask_gpu<uchar3, uchar4>(PtrStepSzb prevFrame, PtrStepSzb curFrame, uchar3
bestThres
, PtrStepSzb changeMask, cudaStream_t stream);
262
template void calcDiffThreshMask_gpu<uchar4, uchar3>(PtrStepSzb prevFrame, PtrStepSzb curFrame, uchar3
bestThres
, PtrStepSzb changeMask, cudaStream_t stream);
263
template void calcDiffThreshMask_gpu<uchar4, uchar4>(PtrStepSzb prevFrame, PtrStepSzb curFrame, uchar3
bestThres
, PtrStepSzb changeMask, cudaStream_t stream)
[
all
...]
fgd.hpp
173
void calcDiffThreshMask_gpu(cv::cuda::PtrStepSzb prevFrame, cv::cuda::PtrStepSzb curFrame, uchar3
bestThres
, cv::cuda::PtrStepSzb changeMask, cudaStream_t stream);
/external/opencv/cvaux/src/
cvbgfg_acmmm2003.cpp
289
uchar
bestThres
= 0;
292
bestThres
= (uchar)(*pBestThres); if (
bestThres
<10)
bestThres
=10;
303
if ( diff >
bestThres
)
Completed in 339 milliseconds