Lines Matching refs:blockHist
825 float* blockHist = buf; in getBlock() local
847 blockHist = &blockCache[cacheIdx.y][cacheIdx.x*blockHistogramSize]; in getBlock()
850 return blockHist; in getBlock()
858 CV_Assert( blockHist != 0 ); in getBlock()
860 blockHist[k] = 0.f; in getBlock()
871 float* hist = blockHist + pk.histOfs[0]; in getBlock()
885 float* hist = blockHist + pk.histOfs[0]; in getBlock()
891 hist = blockHist + pk.histOfs[1]; in getBlock()
906 float* hist = blockHist + pk.histOfs[0]; in getBlock()
912 hist = blockHist + pk.histOfs[1]; in getBlock()
918 hist = blockHist + pk.histOfs[2]; in getBlock()
924 hist = blockHist + pk.histOfs[3]; in getBlock()
931 normalizeBlockHistogram(blockHist); in getBlock()
933 return blockHist; in getBlock()
1034 vector<float> blockHist(blockHistogramSize); in detect() local
1059 const float* vec = cache.getBlock(pt, &blockHist[0]); in detect()