openvdb

OpenVDB - Sparse volume data structure and tools

Github星跟踪图

OpenVDB

License
CII Best Practices
Azure

Website, Discussion Forum, Documentation

OpenVDB is an open source C++ library comprising a novel hierarchical data structure and a large suite of tools for the efficient storage and manipulation of sparse volumetric data discretized on three-dimensional grids. It was developed by DreamWorks Animation for use in volumetric applications typically encountered in feature film production.

Development Repository

This GitHub repository hosts the trunk of the OpenVDB development. This implies that it is the newest public version with the latest features and bug fixes. However, it also means that it has not undergone a lot of testing and is generally less stable than the production releases.

License

OpenVDB is released under the Mozilla Public License Version 2.0, which is a free, open source software license developed and maintained by the Mozilla Foundation.

The trademarks of any contributor to this project may not be used in association with the project without the contributor's express permission.

Contributing

OpenVDB welcomes contributions to the OpenVDB project. Please refer to the contribution guidelines for details on how to make a contribution.

Developer Quick Start

See the build documentation for help with installations.

Linux

Installing Dependencies (Boost, TBB, OpenEXR, Blosc)
apt-get install -y libboost-iostreams-dev
apt-get install -y libboost-system-dev
apt-get install -y libtbb-dev
apt-get install -y libilmbase-dev
apt-get install -y libopenexr-dev
git clone git@github.com:Blosc/c-blosc.git
cd c-blosc
git checkout tags/v1.5.0 -b v1.5.0
mkdir build
cd build
cmake ..
make -j4
make install
cd ../..
Building OpenVDB
git clone git@github.com:AcademySoftwareFoundation/openvdb.git
cd openvdb
mkdir build
cd build
cmake ..
make -j4
make install

macOS

Installing Dependencies (Boost, TBB, OpenEXR, Blosc)
brew install boost
brew install tbb
brew install ilmbase
brew install openexr
git clone git@github.com:Blosc/c-blosc.git
cd c-blosc
git checkout tags/v1.5.0 -b v1.5.0
mkdir build
cd build
cmake ..
make -j4
make install
cd ../..
Building OpenVDB
git clone git@github.com:AcademySoftwareFoundation/openvdb.git
cd openvdb
mkdir build
cd build
cmake ..
make -j4
make install

Windows

Installing Dependencies (Boost, TBB, OpenEXR, Blosc)

It is recommended to set the VCPKG_DEFAULT_TRIPLET=x64-windows environment
variable to use 64-bit libraries by default.

vcpkg install boost zlib blosc openexr tbb
vcpkg integrate install
Building OpenVDB
git clone git@github.com:AcademySoftwareFoundation/openvdb.git
cd openvdb
mkdir build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=<PATH_TO_VCPKG>\scripts\buildsystems\vcpkg.cmake ..
make -j4
make install

主要指标

概览
名称与所有者AcademySoftwareFoundation/openvdb
主编程语言C++
编程语言C++ (语言数: 13)
平台
许可证Apache License 2.0
所有者活动
创建于2013-04-13 02:39:57
推送于2025-10-31 03:09:07
最后一次提交2025-10-31 03:09:02
发布数41
最新版本名称v12.1.1 (发布于 )
第一版名称v1.1.1 (发布于 2013-05-11 04:02:50)
用户参与
星数3.1k
关注者数156
派生数718
提交数4.8k
已启用问题?
问题数470
打开的问题数168
拉请求数1229
打开的拉请求数43
关闭的拉请求数249
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?