Skip to content

Commit

Permalink
relax tolerance of circle radius for alternative method
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett committed Dec 30, 2022
1 parent ca9758c commit fd4b0f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_jump.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_find_simple_circle():
plane[2, 3] = DQFLAGS['JUMP_DET']
plane[2, 1] = DQFLAGS['JUMP_DET']
circle = find_circles(plane, DQFLAGS['JUMP_DET'], 1)
assert circle[0][1] == pytest.approx(1.0, 1e-3)
assert circle[0][1] == pytest.approx(1.0, 7e-2)


@pytest.mark.xfail(not ELLIPSE_PACKAGE_INSTALLED, reason="`opencv-python` not installed")
Expand Down

0 comments on commit fd4b0f8

Please sign in to comment.