Home
last modified time | relevance | path

Searched refs:img_y (Results 1 – 2 of 2) sorted by relevance

/cts/apps/CameraITS/tests/scene5/
Dtest_lens_shading_and_color_uniformity.py179 img_y = image_processing_utils.convert_capture_to_planes(cap)[0]
181 img_y, f'{name_with_log_path}_y_plane.png', True)
201 center_luma = numpy.mean(img_y[top:bottom, left:right])
240 block_y = numpy.mean(img_y[top:bottom, left:right])
/cts/apps/CameraITS/utils/
Dimage_processing_utils.py1314 def compute_image_sad(img_x, img_y): argument
1325 img_y = img_y[:, :, 1:].ravel()
1326 return numpy.sum(numpy.abs(numpy.subtract(img_x, img_y, dtype=float)))