This project intend to create a python photogrammetry toolbox.
It provides an easy interface to run Bundler + Dense point cloud computation via PMVS2 and CMVS (as WIP).
The main drawbacks of Bundler is that people have to install cygwin to use it and windows.
The advantage of Python is that the scripting langage is multiplatform, so the same code will be ok to run Bundler and the other tools on windows, linux and mac ! No more cygwin... installation.
This project make the Sift detector from
VLFeat library works with Bundler. So the toolchain is OpenSource from A to Z. Other modules could be plug into because of the modularity approach that have been choosen.
In a near future we could think in integrate a SIFTGpu matcher into the toolchain.
Running example :
Perform point cloud and camera calibration :
- $ RunBundler.py --photos="./examples/MyPhotos"
Perform dense 3D point cloud computation :
- $ RunPMVS.py --bundlerOutputPath="C:/temp/PreviousLineTempDirectoryPath"
Perform dense 3D point could computation by using Cluster 3D representation of the scene :
- $ RunCMVS.py --bundlerOutputPath="C:/temp/PreviousLineTempDirectoryPath"