An open source command line toolkit for processing aerial drone imagery
 
 
 
 
 
 
Go to file
Stephen Mather 8b87c815cf Create code_of_conduct.md
Former-commit-id: e6bf6df4e3
2014-12-24 00:10:44 -05:00
cmvs add downloads to repo 2014-05-20 13:41:39 -04:00
img add odm_image 2014-09-13 15:11:37 -07:00
patched_files/src add downloads to repo 2014-05-20 13:41:39 -04:00
.gitignore added .gitignore 2011-11-22 13:56:34 +01:00
PoissonRecon.zip add downloads to repo 2014-05-20 13:41:39 -04:00
README.md update dependencies / OS requirements 2014-11-25 12:37:26 -05:00
bundler.zip.REMOVED.git-id rename downloads + remove cmvs from extract 2014-05-23 13:31:11 +00:00
ccd_defs.pl add back in Canon PowerShot SX260 HS 2014-11-29 14:42:49 -05:00
clapack.tgz.REMOVED.git-id rename downloads + remove cmvs from extract 2014-05-23 13:31:11 +00:00
cmvs.tar.gz.part-aa.REMOVED.git-id add cmvs.tar.gz parts 2014-09-26 13:20:40 +00:00
cmvs.tar.gz.part-ab.REMOVED.git-id add cmvs.tar.gz parts 2014-09-26 13:20:40 +00:00
cmvs.tar.gz.part-ac.REMOVED.git-id add cmvs.tar.gz parts 2014-09-26 13:20:40 +00:00
cmvs.tar.gz.part-ad.REMOVED.git-id add cmvs.tar.gz parts 2014-09-26 13:20:40 +00:00
cmvs.tar.gz.part-ae.REMOVED.git-id add cmvs.tar.gz parts 2014-09-26 13:20:40 +00:00
code_of_conduct.md Create code_of_conduct.md 2014-12-24 00:10:44 -05:00
convert_vlsift_to_lowesift.pl big update 2011-11-01 20:32:58 +01:00
graclus.tar.gz rename downloads + remove cmvs from extract 2014-05-23 13:31:11 +00:00
install.sh Added libswitch-perl to install deps (#3) 2014-11-26 18:00:05 +01:00
run.pl Fixing a few typos 2014-11-26 19:24:27 -06:00
vlfeat.tar.gz.REMOVED.git-id rename downloads + remove cmvs from extract 2014-05-23 13:31:11 +00:00

README.md

What is it?

OpenDroneMap is a toolchain for processing raw civilian UAS imagery to other useful products. What kind of products?

  1. Point Clouds
  2. Digital Surface Models
  3. Textured Digital Surface Models
  4. Orthorectified Imagery
  5. Classified Point Clouds
  6. Digital Elevation Models
  7. etc.

Sadly, it does not do all of this yet. So far, it does step 1: Point Clouds. But outputs 2-4 are on their way shortly, so stay tuned.

Steps to get OpenDroneMap running:

(Requires Ubuntu 12.04 32-bit at this time. May also work with Ubuntu 12.04 64-bit.

(Requires Ubuntu 12.04 or later, see https://github.com/OpenDroneMap/odm_vagrant for running on Windows in a VM)

Run install.sh to build.

./install.sh

From a directory full of your images, run

./run.pl


From Meshlab 1.3.3:

* Open Project file, navigate to:
	* <project_location>/reconstruction-with-image-size-1200/bundle/bundle.out
* It will prompt for the image list file
	* <project_location>/reconstruction-with-image-size-1200/list.txt
* Control-L and delete "0 model"
* Import dense point cloud:
	* e.g. <project_location>/reconstruction-with-image-size-1200-results/option-0000.ply
	* (there may be multiple ply files)
* Make a mesh:
	* Filters:Remeshing, Simplification and Reconstruction:Surface Reconstruction Poisson
* Texture the mesh
	* Parameterization + texturing from registered rasters

Example data can be found at https://github.com/OpenDroneMap/odm_data


Long term, the aim is for the toolchain to also be able to optionally push to a variety of online data repositories, pushing hi-resolution aerials to OpenAerialMap, point clouds to OpenTopography, and pushing digital elevation models to an emerging global repository (yet to be named...). That leaves only digital surface model meshes and UV textured meshes with no global repository home.


Troubleshooting:

If you run ODM with your own camera, it is possible you will see something like this:

  - configuration:
    --cmvs-maxImages: 100
    --end-with: pmvs
    --match-size: 200
    --matcher-ratio: 0.6
    --matcher-threshold: 2
    --pmvs-csize: 2
    --pmvs-level: 1
    --pmvs-minImageNum: 3
    --pmvs-threshold: 0.7
    --pmvs-wsize: 7
    --resize-to: 1200
    --start-with: resize


  - source files - Fri Sep 19 13:47:42 UTC 2014


    no CCD width or focal length found for DSC05391.JPG - camera: "SONY DSC-HX5V"
    no CCD width or focal length found for DSC05392.JPG - camera: "SONY DSC-HX5V"
    no CCD width or focal length found for DSC05393.JPG - camera: "SONY DSC-HX5V"
    no CCD width or focal length found for DSC05394.JPG - camera: "SONY DSC-HX5V"
    no CCD width or focal length found for DSC05395.JPG - camera: "SONY DSC-HX5V"
    no CCD width or focal length found for DSC05396.JPG - camera: "SONY DSC-HX5V"
    no CCD width or focal length found for DSC05397.JPG - camera: "SONY DSC-HX5V"
    no CCD width or focal length found for DSC05398.JPG - camera: "SONY DSC-HX5V"
    no CCD width or focal length found for DSC05399.JPG - camera: "SONY DSC-HX5V"

    found no usable images - quitting
Died at ../../OpenDroneMap/./run.pl line 364.


This means that your camera is not in the database, https://github.com/OpenDroneMap/OpenDroneMap/blob/gh-pages/ccd_defs.pl

This problem is easily remedied. We need to know CCD size in the camera. We'll get these for our Sony Cyber-shot DSC-HX5 from dpreview: http://www.dpreview.com/products/sony/compacts/sony_dschx5/specifications

So, we'll add the following line to our ccd_defs.pl:

 "SONY DSC-HX5V"                            => 6.104,  # 1/2.4"

And so others can use it, we'll do a pull request to add it to our array for everyone else.