Method: CVFFI::Sequence#initialize
- Defined in:
- lib/opencv-ffi-wrappers/sequence.rb
#initialize(seq) ⇒ Sequence
Returns a new instance of Sequence.
11 12 13 14 |
# File 'lib/opencv-ffi-wrappers/sequence.rb', line 11 def initialize( seq ) raise "Don't know how to handle class #{seq.class}" unless seq.is_a?(CvSeq) @seq = seq end |