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

added symbols for CvMat#morphology and CvMat#smooth

This commit is contained in:
ser1zw 2011-01-30 01:39:57 +09:00
parent c66c856e44
commit 6b6a771207
4 changed files with 86 additions and 13 deletions

View file

@ -115,6 +115,20 @@ class TestOpenCV < OpenCVTestCase
assert_equal(1, STRUCTURING_ELEMENT_SHAPE[:cross])
assert_equal(2, STRUCTURING_ELEMENT_SHAPE[:ellipse])
assert_equal(100, STRUCTURING_ELEMENT_SHAPE[:custom])
# Types of morphological operations
assert_equal(2, MORPHOLOGICAL_OPERATION[:open])
assert_equal(3, MORPHOLOGICAL_OPERATION[:close])
assert_equal(4, MORPHOLOGICAL_OPERATION[:gradient])
assert_equal(5, MORPHOLOGICAL_OPERATION[:tophat])
assert_equal(6, MORPHOLOGICAL_OPERATION[:blackhat])
# Types of the smoothing
assert_equal(0, SMOOTHING_TYPE[:blur_no_scale])
assert_equal(1, SMOOTHING_TYPE[:blur])
assert_equal(2, SMOOTHING_TYPE[:gaussian])
assert_equal(3, SMOOTHING_TYPE[:median])
assert_equal(4, SMOOTHING_TYPE[:bilateral])
end
def test_cvt_color_funcs