1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00
ruby-opencv/lib/opencv/cvcapture.rb
2016-04-10 20:11:32 +09:00

10 lines
180 B
Ruby

module Cv
class CvCapture < VideoCapture
alias_method :query, :read
alias_method :close, :release
def self.open(value = nil)
self.new(value)
end
end
end