Home
last modified time | relevance | path

Searched refs:circle (Results 1 – 10 of 10) sorted by relevance

/cts/apps/CameraITS/tests/scene4/
Dtest_multi_camera_alignment.py351 circle = {}
430 circle[i] = find_circle(cv2.cvtColor(img, cv2.COLOR_BGR2GRAY),
432 print 'Circle radius ', i, ': ', circle[i][2]
446 circle[i][0] = cr['left'] + circle[i][0] / zoom_ratio
447 circle[i][1] = cr['top'] + circle[i][1] / zoom_ratio
448 circle[i][2] = circle[i][2] / zoom_ratio
466 circle[i][0], circle[i][1], r[i], t[i], k[i], chart_distance)
481 print ' x, y (pixels): %.1f, %.1f' % (circle[i][0], circle[i][1])
495 err = np.linalg.norm(np.array([circle[i][0], circle[i][1]]) -
506 circle[i_ref][2], circle[i_2nd][2])
[all …]
Dtest_aspect_ratio_and_crop.py618 cv2.circle(img, (circle_ctx, circle_cty), line_width*2, (255, 0, 0), -1)
625 cv2.circle(img, (size[1]/2, size[0]/2), line_width*2, (255, 0, 0), -1)
/cts/tests/tests/telephony/current/src/android/telephony/cts/
DCbGeoUtilsTest.java82 CbGeoUtils.Circle circle = new CbGeoUtils.Circle(p1, radius); in testCircle() local
84 assertEquals(radius, circle.getRadius(), DELTA); in testCircle()
85 assertEquals(p1, circle.getCenter()); in testCircle()
87 assertTrue(circle.contains(p1)); in testCircle()
/cts/tests/tests/graphics/src/android/graphics/cts/
DPathMeasureTest.java103 Path circle = new Path(); in testIsClosed() local
104 circle.addCircle(0, 0, 1, Direction.CW); in testIsClosed()
106 PathMeasure measure = new PathMeasure(circle, false); in testIsClosed()
108 measure.setPath(circle, true); in testIsClosed()
/cts/apps/CameraITS/tests/rolling_shutter_skew/
Dtest_rolling_shutter_skew.py456 for circle in largest_cluster:
457 cv2.circle(frame, (int(circle.x), int(circle.y)), int(circle.r),
616 for circle in circles[1:]:
617 if not x_intersects(circle, last_circle):
618 last_circle = circle
/cts/tests/tests/animation/src/android/animation/cts/
DAnimationActivity.java243 OvalShape circle = new OvalShape(); in addBall() local
244 circle.resize(x, y); in addBall()
245 ShapeDrawable drawable = new ShapeDrawable(circle); in addBall()
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DAdaptiveIconDrawableTest.java209 Path circle = new Path(); in testDrawSetBounds() local
210circle.addCircle(width / 2, height / 2, (right - left)/2 -10 /* room for anti-alias */, Direction… in testDrawSetBounds()
212 region.setPath(circle, region); in testDrawSetBounds()
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
DVectorDrawableTests.java65 mVd = (VectorDrawable) context.getResources().getDrawable(R.drawable.circle, null); in VectorDrawableView()
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
Dluts_for_speedup_f32.rsh63 // circle of radius r and a horizontal line of height y.
/cts/apps/CameraITS/tests/sensor_fusion/
Dtest_sensor_fusion.py369 cv2.circle(frame, (x, y), 3, (100, 100, 255), -1)