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...)
 
Line 1: Line 1:
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://www.fujifilm.com/products/3d/camera/finepix_real3dw1/][Fujifilm FinePix REAL 3D W1]] stereo camera.
+
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://www.fujifilm.com/products/3d/camera/finepix_real3dw1/ Fujifilm FinePix REAL 3D W1] stereo camera.
  
 
Here you can find the Windows executable and the source code.
 
Here you can find the Windows executable and the source code.

Revision as of 13:44, 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 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