Convert Fuji MPO files to JPEG

From Immersive Visualization Lab Wiki
Revision as of 13:48, 4 March 2010 by Jschulze (Talk | contribs)

Jump to: navigation, search

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.

At this link we provide a ZIP file with the Windows executable and the source code, as well as a Makefile for Linux.

To use the tool you call it from the command line 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