Convert Fuji MPO files to JPEG
From Immersive Visualization Lab Wiki
Andrew Prudhomme wrote a command line tool which converts Fuji MPO files, which contain two stereo images, to the two JPEG files it contains. This image format is created by the Fujifilm FinePix REAL 3D W1 stereo camera.
Here you can find the Windows executable and the source code.
To use the tool you call it with:
mpoSplit <filename.MPO>
and it will create two files filename-L.JPG and filename-R.JPG for the left and right eye image, respectively.
In order to convert all MPO files in a directory, this tcsh shell script does the job:
#!/bin/tcsh foreach i (*.MPO) ./mpoSplit $i end