标签: python opencv
我正在使用Python的OpenCV绑定。我想从具有一定步幅的缓冲区创建一个IplImage对象,在不影响程序的其他组件的情况下我无法更改。由于底层C结构支持striding(称为widthStep),我能找到的唯一Python构造函数(cv.CreateImage)不支持设置它。
IplImage
widthStep
cv.CreateImage
有没有办法设置widthStep?
感谢。