Using a Phantom high speed camera, the software saves an array of images in the '.cine' file format. This format is supported by imageio in python according to the docs. So, I installed the FreeImage backend as described elsewhere and tried to load the file with the following code:
import imageio.v3 as iio
frames = iio.imread('<full path>/<filename>.cine', index=None, plugin='RAW-FI', extension='.cine')
But this yields an error:
ValueError: Could not load bitmap '<full path>/<filename>.cine' : LibRaw : failed to open input stream (unknown format)
The file has a size of about 500 mb. All examples of the imageio docs I can perfectly reproduce. Any ideas on how to open a '.cine' file in python?
A last resort would be to circumvent this issue altogether and convert the images to another format using the proprietary software (Windows only...), but loading the pictures directly from the .cine file in python would be preferred.