Home | History | Annotate | Download | only in scene1

Lines Matching refs:gains

48         # The camera HAL may not support different gains for two G channels.
64 "android.colorCorrection.gains": manual_gains,
116 gains = cap_res["android.colorCorrection.gains"]
123 print "Gains:", gains
134 assert(len(gains) == 4)
136 assert(all([g > 0 for g in gains]))
140 assert(any([not is_close_float(gains[i], manual_gains[i])
160 gains = cap_res["android.colorCorrection.gains"]
170 print "Gains:", gains
182 # Color correction gains and transform should be the same size and
184 assert(len(gains) == 4)
186 assert( all([is_close_float(gains[i], manual_gains_ok[0][i])
188 all([is_close_float(gains[i], manual_gains_ok[1][i])
190 all([is_close_float(gains[i], manual_gains_ok[2][i])