CompletionFormer 点云补全 学习笔记

目录

依赖项

数据集

[KITTI DC](#KITTI DC)

[NYUv2 提供深度图](#NYUv2 提供深度图)

模型


依赖项

复制代码
conda create -n completionformer python=3.8
conda activate completionformer
# For CUDA Version == 11.3
pip install torch==1.10.1+cu113 torchvision==0.11.2+cu113 torchaudio==0.10.1+cu113
pip install mmcv-full==1.4.4 mmsegmentation==0.22.1  
pip install timm tqdm thop tensorboardX opencv-python ipdb h5py ipython Pillow==9.5.0 

dcv v2

数据集

KITTI DC

depth velodyne 深度测速仪

NYUv2 提供深度图

复制代码
$ cd PATH_TO_DOWNLOAD
$ wget http://datasets.lids.mit.edu/sparse-to-dense/data/nyudepthv2.tar.gz
$ tar -xvf nyudepthv2.tar.gz

After that, you will get a data structure as follows:

复制代码
nyudepthv2
├── train
│    ├── basement_0001a
│    │    ├── 00001.h5
│    │    └── ...
│    ├── basement_0001b
│    │    ├── 00001.h5
│    │    └── ...
│    └── ...
└── val
    └── official
        ├── 00001.h5
        └── ...

Note that the original full NYUv2 dataset is available at the official website.

After preparing the dataset, you should generate a json file containing paths to individual images.

复制代码
$ cd THIS_PROJECT_ROOT/utils
$ python generate_json_NYUDepthV2.py --path_root PATH_TO_NYUv2

模型

318M

相关推荐
吃好睡好便好6 小时前
泰戈尔的诗歌7
学习·生活
RainCity6 小时前
Java Swing 自定义组件库分享(十三)
java·笔记·后端
星夜夏空997 小时前
C++学习(2) —— 类与对象基础
开发语言·c++·学习
-To be number.wan7 小时前
数据库系统 | 数据库安全与完整性
数据库·学习
czysoft8 小时前
se被限速
科技·学习·it·技术·魔法·先进·领先
子不语1808 小时前
从0开始学习S7-1200+ET200SP(3)——两台S7-1200通过TCP连接
网络协议·学习·tcp/ip
llllliznc9 小时前
LLM 学习笔记 Day 5:Agent 核心组件——Planner、Memory 与 Reflection
笔记·学习
risc1234569 小时前
“解决了什么痛点”与“为什么有这个东西”的关系?
笔记
hj2862519 小时前
Docker 容器化技术标准化笔记
java·笔记·docker
hyhsandy18039 小时前
STM32F103 TIM学习笔记
笔记·stm32·学习