Searched refs:histBuf (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/apps/traincascade/ |
D | HOGfeatures.cpp | 220 float* histBuf; in integralHistogram() local 229 histBuf = histogram[binIdx].ptr<float>(); in integralHistogram() 233 memset( histBuf, 0, histSize.width * sizeof(histBuf[0]) ); in integralHistogram() 234 histBuf += histStep + 1; in integralHistogram() 237 histBuf[-1] = 0.f; in integralHistogram() 243 histBuf[x] = histBuf[-histStep + x] + strSum; in integralHistogram() 245 histBuf += histStep; in integralHistogram()
|
/external/opencv3/modules/cudalegacy/src/ |
D | fgd.cpp | 154 …d calcDiffHistogram(const GpuMat& prevFrame, const GpuMat& curFrame, GpuMat& hist, GpuMat& histBuf) in calcDiffHistogram() argument 169 histBuf.create(3, fgd::PARTIAL_HISTOGRAM_COUNT * fgd::HISTOGRAM_BIN_COUNT, CV_32SC1); in calcDiffHistogram() 174 … histBuf.ptr<unsigned int>(0), histBuf.ptr<unsigned int>(1), histBuf.ptr<unsigned int>(2), in calcDiffHistogram() 238 …const GpuMat& prevFrame, const GpuMat& curFrame, GpuMat& changeMask, GpuMat& hist, GpuMat& histBuf) in changeDetection() argument 240 calcDiffHistogram(prevFrame, curFrame, hist, histBuf); in changeDetection()
|