Home
last modified time | relevance | path

Searched refs:coefs (Results 1 – 7 of 7) sorted by relevance

/external/opencv3/modules/imgproc/src/
Dgrabcut.cpp74 double* coefs; member in GMM
100 coefs = model.ptr<double>(0); in GMM()
101 mean = coefs + componentsCount; in GMM()
105 if( coefs[ci] > 0 ) in GMM()
113 res += coefs[ci] * (*this)(ci, color ); in operator ()()
120 if( coefs[ci] > 0 ) in operator ()()
181 coefs[ci] = 0; in endLearning()
184 coefs[ci] = (double)n/totalSampleCount; in endLearning()
210 if( coefs[ci] > 0 ) in calcInverseCovAndDeterm()
/external/opencv3/modules/cudaobjdetect/src/cuda/
Dhog.cu336 … const float* block_hists, const float* coefs, in compute_confidence_hists_kernel_many_blocks() argument
352 … product += coefs[i] * hist[offset_y * img_block_width * cblock_hist_size + offset_x]; in compute_confidence_hists_kernel_many_blocks()
368 … float* coefs, float free_coef, float threshold, float *confidences) in compute_confidence_hists() argument
388 block_hists, coefs, free_coef, threshold, confidences); in compute_confidence_hists()
398 … const float* block_hists, const float* coefs, in classify_hists_kernel_many_blocks() argument
414 … product += coefs[i] * hist[offset_y * img_block_width * cblock_hist_size + offset_x]; in classify_hists_kernel_many_blocks()
430 float* coefs, float free_coef, float threshold, unsigned char* labels) in classify_hists() argument
448 block_hists, coefs, free_coef, threshold, labels); in classify_hists()
/external/libopus/silk/float/
Dnoise_shape_analysis_FLP.c40 const silk_float *coefs, in warped_gain() argument
48 gain = coefs[ order - 1 ]; in warped_gain()
50 gain = lambda * gain + coefs[ i ]; in warped_gain()
/external/opencv3/modules/objdetect/src/opencl/
Dobjdetect_hog.cl295 __global const float * block_hists, __global const float* coefs,
309 product += coefs[i * cdescr_width + tid] *
368 __global const float * block_hists, __global const float* coefs,
382 product += coefs[i * cdescr_width + tid] *
437 __global const float * block_hists, __global const float* coefs,
452 product += coefs[i] *
/external/webrtc/webrtc/modules/audio_processing/aecm/
Daecm_core_mips.c86 int32_t hann, hann1, coefs; in WindowAndFFT() local
149 [hann1] "=&r" (hann1), [shift1] "=&r" (shift1), [coefs] "=&r" (coefs), in WindowAndFFT()
/external/dng_sdk/source/
Ddng_lens_correction.cpp470 const dng_vector &coefs = fRadParams [plane]; in MaxSrcRadiusGap() local
472 const real64 k3 = coefs [1]; in MaxSrcRadiusGap()
473 const real64 k5 = coefs [2]; in MaxSrcRadiusGap()
474 const real64 k7 = coefs [3]; in MaxSrcRadiusGap()
/external/opencv3/modules/cudaobjdetect/src/
Dhog.cpp70 int width, float* block_hists, float* coefs, float free_coef,
75 float* coefs, float free_coef, float threshold, float *confidences);