Releases
- Last stable DGtal release: DGtal 2.0
Development version
- Read-only git access (development branch):
git clone git://github.com/DGtal-team/DGtal.git
- You can also browse the source.
- If you want to contribute, please contact us or submit a proposal through a Github Pull-Request.
Requirements
- C++ compiler with C++20 features
- cmake to generate the project and compile the library (>=3.20)
- zlib for compressed Vol files
Main optional dependencies
- polyscope for the built-in 3d viewer
- InsightToolkit (ITK) to merge ITK pipelines in DGtal via the image container.
- doxygen (to generate the source code documentation)
- CGAL to be able to consider point cloud based differential estimators.
- Ponca for point cloud based differential estimators
How to build the library
See also the dedicated page in the DGtal documentation.
- Linux (command line)
- get the code -> DGtal/
mkdir build ; cd build ; cmake .. ; make
- if you wish, you can “install” the library in your system:
sudo make install
- Windows
- use cmake-gui to generate the VS project for instance
- open the DGtal project and compile with Visual Studio (VS14 or above)