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

115 lines
3.6 KiB
Ruby
Raw Normal View History

2010-12-31 17:26:15 +09:00
#!/usr/bin/env ruby
# -*- mode: ruby; coding: utf-8-unix -*-
require 'test/unit'
require 'opencv'
require File.expand_path(File.dirname(__FILE__)) + '/test_opencv'
include OpenCV
2010-12-31 17:32:28 +09:00
# Tests for OpenCV::CvScalar
2010-12-31 17:26:15 +09:00
class TestCvScalar < TestOpenCV
def test_aref
s = CvScalar.new
4.times { |i| assert_in_delta(0, s[i], 0.01) }
s = CvScalar.new(10, 20, 30, 40)
[10, 20, 30, 40].each_with_index { |x, i|
assert_in_delta(x, s[i], 0.01)
}
s = CvScalar.new(0.1, 0.2, 0.3, 0.4)
[0.1, 0.2, 0.3, 0.4].each_with_index { |x, i|
assert_in_delta(x, s[i], 0.01)
}
2010-12-31 17:26:15 +09:00
end
def test_aset
s = CvScalar.new
[10, 20, 30, 40].each_with_index { |x, i|
s[i] = x
}
[10, 20, 30, 40].each_with_index { |x, i|
assert_in_delta(x, s[i], 0.01)
}
s = CvScalar.new
[0.1, 0.2, 0.3, 0.4].each_with_index { |x, i|
s[i] = x
}
[0.1, 0.2, 0.3, 0.4].each_with_index { |x, i|
assert_in_delta(x, s[i], 0.01)
}
2010-12-31 17:26:15 +09:00
end
def test_sub
s1 = CvScalar.new(10, 20, 30, 40)
s2 = CvScalar.new(2, 4, 6, 8)
[s1.sub(s2), s1 - s2].each { |s|
assert_in_delta(8, s[0], 0.01)
assert_in_delta(16, s[1], 0.01)
assert_in_delta(24, s[2], 0.01)
assert_in_delta(32, s[3], 0.01)
}
s3 = CvScalar.new(0.2, 0.4, 0.6, 0.8)
[s2.sub(s3), s2 - s3].each { |s|
assert_in_delta(1.8, s[0], 0.01)
assert_in_delta(3.6, s[1], 0.01)
assert_in_delta(5.4, s[2], 0.01)
assert_in_delta(7.2, s[3], 0.01)
}
mat = CvMat.new(5, 5)
mask = CvMat.new(5, 5, :cv8u, 1)
mat.height.times { |j|
mat.width.times { |i|
mat[i, j] = CvScalar.new(1.5)
mask[i, j] = (i < 2 and j < 3) ? 1 : 0
}
}
mat = CvScalar.new(0.1).sub(mat, mask)
[CvMat.new(5, 5, :cv16u, 1), CvMat.new(5, 5, :cv8u, 3)].each { |mask|
assert_raise(TypeError) {
CvScalar.new.sub(mat, mask)
}
}
2010-12-31 17:26:15 +09:00
end
def test_to_s
assert_equal("<OpenCV::CvScalar:10,20,30,40>", CvScalar.new(10, 20, 30, 40).to_s)
assert_equal("<OpenCV::CvScalar:0.1,0.2,0.3,0.4>", CvScalar.new(0.1, 0.2, 0.3, 0.4).to_s)
2010-12-31 17:26:15 +09:00
end
def test_to_ary
[[10, 20, 30, 40], [0.1, 0.2, 0.3, 0.4]].each { |a|
s = CvScalar.new(*a)
b = s.to_ary
assert_equal(Array, b.class)
a.each_with_index { |x, i|
assert_in_delta(x, b[i], 0.01)
}
2010-12-31 17:26:15 +09:00
}
end
2010-12-31 17:50:07 +09:00
def test_cvcolor
2010-12-31 21:34:36 +09:00
assert(is_same_float_array(CvColor::Black, CvScalar.new(0x0, 0x0, 0x0, 0)))
assert(is_same_float_array(CvColor::Silver, CvScalar.new(0x0c, 0x0c, 0x0c, 0)))
assert(is_same_float_array(CvColor::Gray, CvScalar.new(0x80, 0x80, 0x80, 0)))
assert(is_same_float_array(CvColor::White, CvScalar.new(0xff, 0xff, 0xff, 0)))
assert(is_same_float_array(CvColor::Maroon, CvScalar.new(0x0, 0x0, 0x80, 0)))
assert(is_same_float_array(CvColor::Red, CvScalar.new(0x0, 0x0, 0xff, 0)))
assert(is_same_float_array(CvColor::Purple, CvScalar.new(0x80, 0x0, 0x80, 0)))
assert(is_same_float_array(CvColor::Fuchsia, CvScalar.new(0xff, 0x0, 0xff, 0)))
assert(is_same_float_array(CvColor::Green, CvScalar.new(0x0, 0x80, 0x0, 0)))
assert(is_same_float_array(CvColor::Lime, CvScalar.new(0x0, 0xff, 0x0, 0)))
assert(is_same_float_array(CvColor::Olive, CvScalar.new(0x0, 0x80, 0x80, 0)))
assert(is_same_float_array(CvColor::Yellow, CvScalar.new(0x0, 0xff, 0xff, 0)))
assert(is_same_float_array(CvColor::Navy, CvScalar.new(0x80, 0x0, 0x0, 0)))
assert(is_same_float_array(CvColor::Blue, CvScalar.new(0xff, 0x0, 0x0, 0)))
assert(is_same_float_array(CvColor::Teal, CvScalar.new(0x80, 0x80, 0x0, 0)))
assert(is_same_float_array(CvColor::Aqua, CvScalar.new(0xff, 0xff, 0x0, 0)))
2010-12-31 17:50:07 +09:00
end
2010-12-31 17:26:15 +09:00
end