2D gaussian splatting的配置和可视化

继3D gaussian splatting,2D gaussian splatting除了渲染新视角,还能够生成mesh模型。

2D gaussian splatting的配置

两者的运行环境基本一致

GitHub - hbb1/2d-gaussian-splatting: [SIGGRAPH'24] 2D Gaussian Splatting for Geometrically Accurate Radiance Fields

增加的内容有

git clone https://github.com/hbb1/2d-gaussian-splatting.git --recursive

pip install submodules/diff-surfel-rasterization

pip install submodules/simple-knn

pip install opencv-contrib-python

pip install plyfile

pip install matplotlib

pip install mediapy

pip install open3d

pip install trimesh

pip install tqdm

SIBR可视化

GitHub - RongLiu-Leo/Gaussian-Splatting-Monitor: Monitor Gaussian Splatting additional real-time viewable and differentiable outputs

git clone https://github.com/RongLiu-Leo/Gaussian-Splatting-Monitor.git

cd SIBR_viewers

cmake -Bbuild . -DCMAKE_BUILD_TYPE=Release

cmake --build build -j24 --target install

运行SIBR_remoteGaussian_app,再

train-s /home/zousiyuan/data/DTU/DTU/scan105 -m output/data/scan105 -r 2 --depth_ratio 1

render.py -s /home/zousiyuan/data/DTU/DTU/scan105 -m output/data/scan105 -r 2 --depth_ratio 1 --skip_test --skip_train

相关推荐
一晌小贪欢32 分钟前
Python 爬虫进阶:如何利用反射机制破解常见反爬策略
开发语言·爬虫·python·python爬虫·数据爬虫·爬虫python
躺平大鹅41 分钟前
5个实用Python小脚本,新手也能轻松实现(附完整代码)
python
阿猿收手吧!1 小时前
【C++】异步编程:std::async终极指南
开发语言·c++
yukai080081 小时前
【最后203篇系列】039 JWT使用
python
小程故事多_801 小时前
Agent Infra核心技术解析:Sandbox sandbox技术原理、选型逻辑与主流方案全景
java·开发语言·人工智能·aigc
沐知全栈开发1 小时前
SQL 日期处理指南
开发语言
黎雁·泠崖1 小时前
【魔法森林冒险】3/14 Allen类(一):主角核心属性与初始化
java·开发语言
黎雁·泠崖1 小时前
【魔法森林冒险】1/14 项目总览:用Java打造你的第一个回合制冒险游戏
java·开发语言
独好紫罗兰1 小时前
对python的再认识-基于数据结构进行-a006-元组-拓展
开发语言·数据结构·python