mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
10 lines
180 B
Ruby
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
|