HomeSort by relevance Sort by last modified time
    Searched refs:var_threshold (Results 1 - 3 of 3) sorted by null

  /device/google/contexthub/firmware/inc/algos/
gyro_stillness_detect.h 46 float var_threshold; //[sensor units]^2 member in struct:gyroStillDet_t
95 float var_threshold,
  /device/google/contexthub/firmware/src/algos/
gyro_stillness_detect.c 29 float var_threshold,
37 if (confidence_delta < var_threshold) {
40 gyro_still_det->confidence_delta = var_threshold;
45 gyro_still_det->var_threshold = var_threshold;
156 float upper_var_thresh = (gyro_still_det->var_threshold +
159 float lower_var_thresh = (gyro_still_det->var_threshold -
185 float var_thresh = gyro_still_det->var_threshold;
  /external/opencv/cvaux/src/
cvbgfg_gaussmix.cpp 386 double var_threshold = 0.0; local
390 var_threshold += g_point->g_values[k].variance[m];
392 var_threshold = bg_model_params->std_threshold*bg_model_params->std_threshold*var_threshold;
393 if(sum_d2 < var_threshold){
416 double sum_d2 = 0.0, var_threshold;
423 var_threshold = bg_model_params->std_threshold*bg_model_params->std_threshold;
424 if( sum_d2 < var_threshold )

Completed in 117 milliseconds