Home
last modified time | relevance | path

Searched refs:corner (Results 1 – 8 of 8) sorted by relevance

/cts/apps/CameraITS/utils/
Dopencv_processing_utils.py1001 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)
Dlow_light_utils.py186 for corner, luminance in corner_brightness.items():
188 darkest_corner = (corner, luminance)
190 brightest_corner = (corner, luminance)
/cts/apps/CameraITS/tests/sensor_fusion/
Dtest_preview_distortion.py96 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/
Dlayered_filter_f32_helper.rsh79 // 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.
Dlayered_filter_d1new_helper.rsh139 // 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.
Dlayered_filter_fast_d1new.rscript162 // Moves sharp_nbr to the top left corner of this pixel.
222 // Moves sharp_nbr to the top left corner of this pixel.
Dlayered_filter_fast_f32.rscript180 // Moves sharp_nbr to the top left corner of this pixel.
/cts/tests/framework/base/windowmanager/src/android/server/wm/animations/
DBlurTests.java484 final RoundedCorner corner = insets.getRoundedCorner(position); in getCornerRadius() local
485 return corner != null ? corner.getRadius() : 0; in getCornerRadius()