百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
O

openvdb

> 编程语言
开源

OpenVDB - 稀疏体积数据结构和工具

3.4K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

OpenVDB - 稀疏体积数据结构和工具

OpenVDB AX Nano Houdini License CII

Website | Discussion Forum | Documentation | Releases | License | Slack

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 Apache License, Version 2.0, which is a free, open source software license developed and maintained by the Apache Software Foundation.

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

NOTE: OpenVDB has completed re-licensing from Mozilla Public License Version 2.0 to Apache License, Version 2.0. Please see the file RE-LICENSE_NOTE.txt for more details.

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

The following provides basic installation examples for the core OpenVDB library. Other components, such as the python module, OpenVDB AX, NanoVDB and various executables, may require additional dependencies. See the build documentation for help with installations.

Linux/MacOS
# Linux
# @note If your distribution does not have required versions, consider using
#   apt pinning. See the dependency documentation for more details.
apt-get install -y libboost-iostreams-dev
apt-get install -y libtbb-dev
apt-get install -y libblosc-dev

# MacOS
# @note We are using homebrew in this example to install requried dependencies
#  https://brew.sh/
brew install boost
brew install tbb
brew install c-blosc
git clone [email protected]:AcademySoftwareFoundation/openvdb.git
cd openvdb
mkdir build
cd build
cmake ..
make -j4 && make install
Windows

Note that the following commands have only been tested for 64bit systems/libraries. It is recommended to set the VCPKG_DEFAULT_TRIPLET environment variable to x64-windows to use 64-bit libraries by default. You will also require Visual Studio (for the MSVC C++ runtime and compiler toolchains), CMake and optionally vcpkg for the installation of OpenVDB's dependencies.

vcpkg install zlib:x64-windows
vcpkg install blosc:x64-windows
vcpkg install tbb:x64-windows
vcpkg install boost-iostreams:x64-windows
vcpkg install boost-interprocess:x64-windows
git clone [email protected]:AcademySoftwareFoundation/openvdb.git
cd openvdb
mkdir build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=<PATH_TO_VCPKG>\scripts\buildsystems\vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows -A x64 ..
cmake --build . --parallel 4 --config Release --target install

Building OpenVDB AX and NanoVDB

OpenVDB AX depends on the core OpenVDB library. NanoVDB can be built with and without OpenVDB support. Note that NanoVDB has its own build instructions, see the NanoVDB build documentation for details.

The following variables can be passed to the cmake configure command. There are more optional VDB components, see the build documentation for a complete list.

Option Details -D OPENVDB_BUILD_AX=ON to enable OpenVDB AX -D OPENVDB_BUILD_NANOVDB=ON to enable NanoVDB -D NANOVDB_USE_OPENVDB=ON to use OpenVDB in NanoVDB

GitHub Issues· 244 开放

在 GitHub 查看全部
  • #2341

    [BUILD] FindLog4cplus.cmake : uppercase vs lowercase confusion

    更新于 2026年9月17日
  • #2232

    NanoVDB: injectable CUDA memory resources — design & roadmap

    nanovdb更新于 2026年9月15日
  • #2327

    NanoVDB: type the remaining byte scratch buffers as cuda::Buffer<T> (CUDA)

    更新于 2026年9月15日

核心特点

  • •C++
  • •c-plus-plus
  • •dreamworks
  • •fx
  • •openvdb

> 标签

C++c-plus-plusdreamworksfxopenvdb

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言