Difference between revisions of "Convert Fuji MPO files to JPEG"

From Immersive Visualization Lab Wiki
Jump to: navigation, search
(New page: 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 [[http://w...)

Revision as of 13:43, 4 March 2010

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 [[1][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