Lines Matching defs:target
1221 // now we're on target, we can read data
1244 // now we're on target, we can read data
1878 // pick target value at 95th percentile of all values. There may be a lot of black values
1901 DBG(DBG_proc, "%s: channel %d, curr=%f, target=%f, out_gain:%d\n", __func__, ch,
2019 std::uint16_t target = sensor.gain_white_ref * 256;
2122 auto target = (bottom[i] + top[i]) / 2;
2124 exp[i] = (exp[i] * target) / avg[i];
2136 // we accept +- 2% delta from target
2137 if (std::abs(avg[i] - target) > target / 50) {
2140 exp[i] = exp[i] * prev_weight + ((exp[i] * target) / avg[i]) * (1 - prev_weight);
2564 // This calibration uses a scan over the calibration target, comprising a black and a white strip.
2726 * @param target desired target code
2730 compute_coefficient (unsigned int coeff, unsigned int target, unsigned int value)
2736 result = (coeff * target) / value;
2776 * @param target_bright value of the white target code
2777 * @param target_dark value of the black target code
2957 * @param target value of the target code
2966 unsigned int target)
3003 val=compute_coefficient(coeff,target,br-dk);
3029 * @param target white target value
3040 unsigned int target)
3069 val = compute_coefficient (coeff, target, br - dk);