mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
implemented and tested CvMat#hough_circles
This commit is contained in:
parent
8cd64f243e
commit
9b309eeef8
5 changed files with 53 additions and 1 deletions
|
@ -75,6 +75,7 @@ class TestOpenCV < OpenCVTestCase
|
|||
assert_equal(0, CV_HOUGH_STANDARD)
|
||||
assert_equal(1, CV_HOUGH_PROBABILISTIC)
|
||||
assert_equal(2, CV_HOUGH_MULTI_SCALE)
|
||||
assert_equal(3, CV_HOUGH_GRADIENT)
|
||||
end
|
||||
|
||||
def test_symbols
|
||||
|
@ -174,6 +175,7 @@ class TestOpenCV < OpenCVTestCase
|
|||
assert_equal(0, HOUGH_TRANSFORM_METHOD[:standard])
|
||||
assert_equal(1, HOUGH_TRANSFORM_METHOD[:probabilistic])
|
||||
assert_equal(2, HOUGH_TRANSFORM_METHOD[:multi_scale])
|
||||
assert_equal(3, HOUGH_TRANSFORM_METHOD[:gradient])
|
||||
end
|
||||
|
||||
def test_cvt_color_funcs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue