Hi there, I gladly saw that a feature allowing to save multi-page images was introduced about a year ago: https://github.com/opencv/opencv/pull/10367
However I don't see this working in Python:
>>> import cv2
>>> im = cv2.imread('/tmp/test.tif')
>>> im2 = cv2.imread('/tmp/thumb.tif')
>>> cv2.imwrite([im, im2], '/tmp/opencv_multi.tif')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: bad argument type for built-in operation
>>> help(cv2.imwrite)
imwrite(...)
imwrite(filename, img[, params]) -> retval
[...]
Is a Python port foreseen? Or am I just using the wrong syntax?
Thanks.