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

added CvMat#svd

This commit is contained in:
ser1zw 2011-09-18 18:22:21 +09:00
parent ca6b5daca1
commit 41bf713cd3
4 changed files with 130 additions and 13 deletions

View file

@ -119,6 +119,11 @@ class TestOpenCV < OpenCVTestCase
# Warp affine optional flags
assert_equal(8, CV_WARP_FILL_OUTLIERS)
assert_equal(16, CV_WARP_INVERSE_MAP)
# SVD operation flags
assert_equal(1, CV_SVD_MODIFY_A)
assert_equal(2, CV_SVD_U_T)
assert_equal(4, CV_SVD_V_T)
end
def test_symbols