Searched refs:stump (Results 1 – 6 of 6) sorted by relevance
/external/opencv3/modules/rsobjdetect/src/rs/ |
D | detectAt.rs | 120 const HaarStump stump = stumps[i + stumpOfs]; 121 float ret = haarFeatures[stump.featureIdx].weight[0] 122 * evaluateIntegral(x, width, 0, haarFeatures[stump.featureIdx]) 123 + haarFeatures[stump.featureIdx].weight[1] 124 * evaluateIntegral(x, width, 1, haarFeatures[stump.featureIdx]); 125 if( haarFeatures[stump.featureIdx].weight[2] != 0.0f ) 126 ret += haarFeatures[stump.featureIdx].weight[2] 127 * evaluateIntegral(x, width, 2, haarFeatures[stump.featureIdx]); 129 tmp += ret < stump.threshold ? stump.left : stump.right;
|
/external/opencv3/modules/rsobjdetect/src/ |
D | innerloop.cpp | 31 const HaarStump stump = cascadeStumps[i]; in initInnerLoop() local 32 sc->invoke_addStump(i, stump.threshold, stump.left, stump.right); in initInnerLoop()
|
/external/opencv3/modules/objdetect/src/ |
D | cascadedetect.hpp | 604 const CascadeClassifierImpl::Data::Stump& stump = cascadeStumps[i]; in predictOrderedStump() local 605 double value = featureEvaluator(stump.featureIdx); in predictOrderedStump() 606 tmp += value < stump.threshold ? stump.left : stump.right; in predictOrderedStump() 642 const CascadeClassifierImpl::Data::Stump& stump = cascadeStumps[wi]; in predictCategoricalStump() local 643 int c = featureEvaluator(stump.featureIdx); in predictCategoricalStump() 645 tmp += (subset[c>>5] & (1 << (c & 31))) ? stump.left : stump.right; in predictCategoricalStump()
|
/external/opencv3/modules/objdetect/src/opencl/ |
D | cascadedetect.cl | 152 __global const Stump* stump = (__global const Stump*)nodes; 176 float4 st = stump[i].st; 192 stump += ntrees; 246 … __global const Stump* stump = (__global const Stump*)nodes + stages[stageIdx].first; 277 float4 st = stump[i].st; 406 __global const Stump* stump = stumps; 413 for( i = 0; i < ntrees; i++, stump++, bitset += bitsetSize ) 415 float4 st = stump->st; 520 __global const Stump* stump = stumps; 532 for( i = 0; i < ntrees; i++, stump++, bitset += bitsetSize ) [all …]
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/ |
D | Transliterator_Kanji_English.txt | 4676 蘖>'[stump]'; 4677 蘗>'[stump]';
|
/external/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_Definition.txt | 886 㮆 < eaves\-sprouting\-from\-the\-stump\-of\-a\-tree; 4244 枵 < hollo\-stump\-of\-a\-tree; 5507 杌 < the\-stump\-f\-a\-tree; 7908 < stump\-of\-a\-tree; 12005 樹樁 < tree\-stump; 19399 蘖 < stump; 27974 > stump\-of\-a\-tree; 29645 樹樁 > tree\-stump; 36583 㮆 > eaves\-sprouting\-from\-the\-stump\-of\-a\-tree; 38921 枵 > hollo\-stump\-of\-a\-tree; [all …]
|