From f95665227f5e02a06a8ce229630f5d009e4bbd6f Mon Sep 17 00:00:00 2001 From: Adrian Schneider Date: Wed, 9 May 2018 16:10:12 +0200 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b29172d..e9d2634 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # DicomToMesh -DicomToMesh is a handy command line tool, which enables the user to automatically create a 3D mesh from a set of 2D DICOM images, a common image format used in medicine. The supported 3D mesh formats are STL, OBJ and PLY. +DicomToMesh is a handy command line tool, which enables the user to automatically create a 3D mesh from a set of 2D DICOM images, a common image format used in medicine. The supported 3D mesh formats are STL, OBJ and PLY. DicomToMesh works on Linux, OSX and Windows.

dicom2mesh

@@ -30,13 +30,24 @@ By passing the command line option -v the resulting mesh is visuali

filter

+# Installation + +Ubuntu 18.04 +``` +> sudo add-apt-repository ppa:eidelen/d2m +> sudo apt-get update +> sudo apt-get install dicom2mesh +``` + +On OSX and Windows it is required to build DicomToMesh yourself. + # Building The software is written in C++11 and uses VTK 7.0. CMake is used as build-system. Building DicomToMesh on Linux and OSX: ``` -> git clone https://github.com/AOT-AG/DicomToMesh.git +> git clone https://github.com/AOT-AG/DicomToMesh.git > cd DicomToMesh > mkdir build > cd build