1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00

modified and tested CvMat#find_contours and CvContour

This commit is contained in:
ser1zw 2011-02-14 04:40:25 +09:00
parent 505ab279b6
commit 9b304e424c
6 changed files with 95 additions and 53 deletions

View file

@ -221,20 +221,22 @@ class TestCvSeq < OpenCVTestCase
assert_equal(60, seq1[1].y)
end
def test_h_prev
flunk('FIXME: CvSeq#h_prev is not tested yet.')
end
# These methods are tested in TestCvMat_imageprocessing#test_find_contours
# (test_cvmat_imageprocessing.rb)
# def test_h_prev
# flunk('FIXME: CvSeq#h_prev is not tested yet.')
# end
def test_h_next
flunk('FIXME: CvSeq#h_next is not tested yet.')
end
# def test_h_next
# flunk('FIXME: CvSeq#h_next is not tested yet.')
# end
def test_v_prev
flunk('FIXME: CvSeq#v_prev is not tested yet.')
end
# def test_v_prev
# flunk('FIXME: CvSeq#v_prev is not tested yet.')
# end
def test_v_next
flunk('FIXME: CvSeq#v_next is not tested yet.')
end
# def test_v_next
# flunk('FIXME: CvSeq#v_next is not tested yet.')
# end
end