Searched refs:corner (Results 1 – 8 of 8) sorted by relevance
/cts/apps/CameraITS/utils/ |
D | opencv_processing_utils.py | 1001 for corner, marker_id in zip(aruco_marker_corners, aruco_marker_ids): 1002 corner = corner.reshape(4, 2) # opencv returns 3D array 1010 corner = numpy.roll(corner, 4) 1012 outer_rect_coordinates[index] = tuple(corner[index]) 1059 for corner, marker_id in zip(aruco_marker_corners, aruco_marker_ids): 1060 corner = corner.reshape(4, 2) # reshape opencv 3D array to 4x2 1062 corner = numpy.roll(corner, ARUCO_CORNER_COUNT) 1063 outer_rect_coordinates[index] = tuple(corner[index]) 1064 logging.debug('Corners: %s', corner)
|
D | low_light_utils.py | 186 for corner, luminance in corner_brightness.items(): 188 darkest_corner = (corner, luminance) 190 brightest_corner = (corner, luminance)
|
/cts/apps/CameraITS/tests/sensor_fusion/ |
D | test_preview_distortion.py | 96 for i, corner in enumerate(corners): 97 x, y = int(corner.ravel()[0]), int(corner.ravel()[1]) 103 for corner in corners: 104 x, y = corner.ravel()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/ |
D | layered_filter_f32_helper.rsh | 79 // Locates the top left corner of the window surrounding this pixel. 127 // Locates the top left corner of the window surrounding this pixel. 164 // Locates the top left corner of the window surrounding this pixel.
|
D | layered_filter_d1new_helper.rsh | 139 // Locates the top left corner of the window surrounding this pixel. 190 // Locates the top left corner index of the window surrounding this pixel. 225 // Locates the top left corner of the window surrounding this pixel.
|
D | layered_filter_fast_d1new.rscript | 162 // Moves sharp_nbr to the top left corner of this pixel. 222 // Moves sharp_nbr to the top left corner of this pixel.
|
D | layered_filter_fast_f32.rscript | 180 // Moves sharp_nbr to the top left corner of this pixel.
|
/cts/tests/framework/base/windowmanager/src/android/server/wm/animations/ |
D | BlurTests.java | 484 final RoundedCorner corner = insets.getRoundedCorner(position); in getCornerRadius() local 485 return corner != null ? corner.getRadius() : 0; in getCornerRadius()
|