Searched refs:img_raw (Results 1 – 2 of 2) sorted by relevance
/cts/apps/CameraITS/tests/scene0/ |
D | test_tonemap_curve.py | 98 def check_raw_pattern(img_raw): argument 108 raw_patch = image_processing_utils.get_image_patch(img_raw, x_norm, Y_NORM, 125 def check_yuv_vs_raw(img_raw, img_yuv, name, debug): argument 137 raw_w = img_raw.shape[1] 138 raw_h = img_raw.shape[0] 150 img_raw = image_processing_utils.get_image_patch( 151 img_raw, x_norm_raw, 0, w_norm_raw, 1) 152 raw_w_cropped = img_raw.shape[1] 153 logging.debug('New RAW W, H: %d, %d', raw_w_cropped, img_raw.shape[0]) 155 img_raw, f'{name}_raw_cropped_COLOR_BARS.jpg', True) [all …]
|
/cts/apps/CameraITS/tests/scene4/ |
D | test_aspect_ratio_and_crop.py | 208 img_raw = image_processing_utils.convert_capture_to_rgb_image( 211 img_raw = cv2.resize(img_raw, (0, 0), fx=2.0, fy=2.0) 220 k, opencv_dist, (img_raw.shape[1], img_raw.shape[0]), 0)[0] 225 img_raw = cv2.undistort(img_raw, k, opencv_dist, None, k_new) 227 img_raw = cv2.undistort(img_raw, k, opencv_dist) 230 size_raw = img_raw.shape 235 image_processing_utils.write_image(img_raw, img_name, True) 238 img_raw *= 255 # cv2 needs images between [0,255]. 240 img_raw, img_name, _CIRCLE_MIN_AREA, _CIRCLE_COLOR) 241 opencv_processing_utils.append_circle_center_to_img(circle_raw, img_raw,
|