Searched refs:lsc_map_w (Results 1 – 2 of 2) sorted by relevance
/cts/apps/CameraITS/tests/scene1_1/ |
D | test_capture_result.py | 53 def draw_lsc_plot(lsc_map_w, lsc_map_h, lsc_map, name, log_path): argument 58 xs = np.array([range(lsc_map_w)] * lsc_map_h).reshape(lsc_map_h, lsc_map_w) 59 ys = np.array([[i]*lsc_map_w for i in range(lsc_map_h)]).reshape( 60 lsc_map_h, lsc_map_w) 61 zs = np.array(lsc_map[ch::4]).reshape(lsc_map_h, lsc_map_w) 148 lsc_map_w = lsc_obj['width'] 150 logging.debug('LSC map: %dx%d, %s', lsc_map_w, lsc_map_h, str(lsc_map[:8])) 151 draw_lsc_plot(lsc_map_w, lsc_map_h, lsc_map, 'auto', log_path) 238 lsc_map_w = lsc_obj['width'] 240 logging.debug('LSC map: %dx%d, %s', lsc_map_w, lsc_map_h, str(lsc_map[:8])) [all …]
|
/cts/apps/CameraITS/utils/ |
D | image_processing_utils.py | 220 lsc_map_w, lsc_map_h = lsc_metadata['width'], lsc_metadata['height'] 223 'lensShadingCorrectionMap (H, W): (%d, %d)', lsc_map_h, lsc_map_w 225 return numpy.array(lsc_map).reshape(lsc_map_h, lsc_map_w, _NUM_RAW_CHANNELS)
|