Home
last modified time | relevance | path

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

/cts/apps/CameraITS/tests/scene1_1/
Dtest_capture_result.py53 def draw_lsc_plot(lsc_map_w, lsc_map_h, lsc_map, name, log_path): argument
60 zs = np.array(lsc_map[ch::4]).reshape(lsc_map_h, lsc_map_w)
133 lsc_map = lsc_obj['map']
136 logging.debug('LSC map: %dx%d, %s', lsc_map_w, lsc_map_h, str(lsc_map[:8]))
137 draw_lsc_plot(lsc_map_w, lsc_map_h, lsc_map, 'auto', log_path)
208 lsc_map = lsc_obj['map']
211 logging.debug('LSC map: %dx%d, %s', lsc_map_w, lsc_map_h, str(lsc_map[:8]))
213 lsc_map_w*lsc_map_h*4 == len(lsc_map))
214 assert all([m >= 1 for m in lsc_map])
217 draw_lsc_plot(lsc_map_w, lsc_map_h, lsc_map, 'manual', log_path)
/cts/apps/CameraITS/tests/scene1_2/
Dtest_param_shading_mode.py106 camera_properties_utils.lsc_map(props) and
138 lsc_map = cap_res['android.statistics.lensShadingCorrectionMap']
139 if not lsc_map.get('width') or not lsc_map.get('height'):
142 num_map_gains = lsc_map['width'] * lsc_map['height'] * 4
144 reference_maps[mode] = lsc_map['map']
/cts/apps/CameraITS/tests/inprog/
Dtest_3a_remote.py52 lsc_map = lsc_obj["map"]
65 print "LSC map:", w_map, h_map, lsc_map[:8]
/cts/apps/CameraITS/utils/
Dcamera_properties_utils.py521 def lsc_map(props): function