Home
last modified time | relevance | path

Searched refs:var_threshold (Results 1 – 4 of 4) sorted by relevance

/device/google/contexthub/firmware/os/algos/calibration/gyroscope/
Dgyro_stillness_detect.c29 void gyroStillDetInit(struct GyroStillDet* gyro_still_det, float var_threshold, in gyroStillDetInit() argument
36 if (confidence_delta < var_threshold) { in gyroStillDetInit()
39 gyro_still_det->confidence_delta = var_threshold; in gyroStillDetInit()
44 gyro_still_det->var_threshold = var_threshold; in gyroStillDetInit()
164 (gyro_still_det->var_threshold + gyro_still_det->confidence_delta); in gyroStillDetCompute()
167 (gyro_still_det->var_threshold - gyro_still_det->confidence_delta); in gyroStillDetCompute()
190 float var_thresh = gyro_still_det->var_threshold; in gyroStillDetCompute()
Dgyro_stillness_detect.h49 float var_threshold; // [sensor units]^2 member
96 void gyroStillDetInit(struct GyroStillDet* gyro_still_det, float var_threshold,
/device/google/contexthub/firmware/os/algos/calibration/diversity_checker/
Ddiversity_checker.h78 float var_threshold; member
118 float var_threshold; member
Ddiversity_checker.c50 diverse_data->var_threshold = parameters->var_threshold; in diversityCheckerInit()
202 return (var < diverse_data->var_threshold); in diversityCheckerNormQuality()