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