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/iplimage.rb
2016-04-10 19:42:34 +09:00

7 lines
158 B
Ruby

module Cv
class IplImage < CvMat
def initialize(width, height, depth = :cv8u, channel = 3)
super(height, width, depth, channel)
end
end
end