All Projects → svip-lab → FastMVSNet

svip-lab / FastMVSNet

Licence: MIT license
[CVPR'20] Fast-MVSNet: Sparse-to-Dense Multi-View Stereo With Learned Propagation and Gauss-Newton Refinement

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to FastMVSNet

Cvpr2021 Papers With Code
CVPR 2021 论文和开源项目合集
Stars: ✭ 7,138 (+3598.45%)
Mutual labels:  cvpr2020
Meshroom
3D Reconstruction Software
Stars: ✭ 7,254 (+3658.55%)
Mutual labels:  multi-view-stereo
DenseDescriptorLearning-Pytorch
Official Repo for the paper "Extremely Dense Point Correspondences using a Learned Feature Descriptor" (CVPR 2020)
Stars: ✭ 66 (-65.8%)
Mutual labels:  cvpr2020
Vibe
Official implementation of CVPR2020 paper "VIBE: Video Inference for Human Body Pose and Shape Estimation"
Stars: ✭ 2,080 (+977.72%)
Mutual labels:  cvpr2020
NerfingMVS
[ICCV 2021 Oral] NerfingMVS: Guided Optimization of Neural Radiance Fields for Indoor Multi-view Stereo
Stars: ✭ 253 (+31.09%)
Mutual labels:  multi-view-stereo
SSTDA
[CVPR 2020] Action Segmentation with Joint Self-Supervised Temporal Domain Adaptation (PyTorch)
Stars: ✭ 150 (-22.28%)
Mutual labels:  cvpr2020
HiCMD
[CVPR2020] Hi-CMD: Hierarchical Cross-Modality Disentanglement for Visible-Infrared Person Re-Identification
Stars: ✭ 64 (-66.84%)
Mutual labels:  cvpr2020
zero virus
Zero-VIRUS: Zero-shot VehIcle Route Understanding System for Intelligent Transportation (CVPR 2020 AI City Challenge Track 1)
Stars: ✭ 25 (-87.05%)
Mutual labels:  cvpr2020
Colmap
COLMAP is a general-purpose Structure-from-Motion (SfM) and Multi-View Stereo (MVS) pipeline with a graphical and command-line interface. It offers a wide range of features for reconstruction of ordered and unordered image collections. The software is licensed under the new BSD license. If you use this project for your research, please cite:
Stars: ✭ 3,479 (+1702.59%)
Mutual labels:  multi-view-stereo
SCT
SCT: Set Constrained Temporal Transformer for Set Supervised Action Segmentation (CVPR2020) https://arxiv.org/abs/2003.14266
Stars: ✭ 35 (-81.87%)
Mutual labels:  cvpr2020
Stargan V2
StarGAN v2 - Official PyTorch Implementation (CVPR 2020)
Stars: ✭ 2,700 (+1298.96%)
Mutual labels:  cvpr2020
CNMNet
ECCV 2020
Stars: ✭ 39 (-79.79%)
Mutual labels:  multi-view-stereo
PQ-NET
code for our CVPR 2020 paper "PQ-NET: A Generative Part Seq2Seq Network for 3D Shapes"
Stars: ✭ 99 (-48.7%)
Mutual labels:  cvpr2020
Cvpr2021 Paper Code Interpretation
cvpr2021/cvpr2020/cvpr2019/cvpr2018/cvpr2017 论文/代码/解读/直播合集,极市团队整理
Stars: ✭ 8,075 (+4083.94%)
Mutual labels:  cvpr2020
CVPR2020 PADS
(CVPR 2020) This repo contains code for "PADS: Policy-Adapted Sampling for Visual Similarity Learning", which proposes learnable triplet mining with Reinforcement Learning.
Stars: ✭ 57 (-70.47%)
Mutual labels:  cvpr2020
Alae
[CVPR2020] Adversarial Latent Autoencoders
Stars: ✭ 3,178 (+1546.63%)
Mutual labels:  cvpr2020
Openmvs
open Multi-View Stereo reconstruction library
Stars: ✭ 1,842 (+854.4%)
Mutual labels:  multi-view-stereo
CVPR-2020-point-cloud-analysis
CVPR 2020 papers focusing on point cloud analysis
Stars: ✭ 48 (-75.13%)
Mutual labels:  cvpr2020
LUVLi
[CVPR 2020] Re-hosting of the LUVLi Face Alignment codebase. Please download the codebase from the original MERL website by agreeing to all terms and conditions. By using this code, you agree to MERL's research-only licensing terms.
Stars: ✭ 24 (-87.56%)
Mutual labels:  cvpr2020
GPQ
Generalized Product Quantization Network For Semi-supervised Image Retrieval - CVPR 2020
Stars: ✭ 60 (-68.91%)
Mutual labels:  cvpr2020

Fast-MVSNet

PyTorch implementation of our CVPR 2020 paper:

Fast-MVSNet: Sparse-to-Dense Multi-View Stereo With Learned Propagation and Gauss-Newton Refinement

Zehao Yu, Shenghua Gao

How to use

git clone [email protected]:svip-lab/FastMVSNet.git

Installation

pip install -r requirements.txt

Training

  • Download the preprocessed DTU training data from MVSNet and unzip it to data/dtu.

  • Train the network

    python fastmvsnet/train.py --cfg configs/dtu.yaml

    You could change the batch size in the configuration file according to your own pc.

Testing

  • Download the rectified images from DTU benchmark and unzip it to data/dtu/Eval.

  • Test with the pretrained model

    python fastmvsnet/test.py --cfg configs/dtu.yaml TEST.WEIGHT outputs/pretrained.pth

Depth Fusion

We need to apply depth fusion tools/depthfusion.py to get the complete point cloud. Please refer to MVSNet for more details.

python tools/depthfusion.py -f dtu -n flow2

Acknowledgements

Most of the code is borrowed from PointMVSNet. We thank Rui Chen for his great works and repos.

Citation

Please cite our paper for any purpose of usage.

@inproceedings{Yu_2020_fastmvsnet,
  author    = {Zehao Yu and Shenghua Gao},
  title     = {Fast-MVSNet: Sparse-to-Dense Multi-View Stereo With Learned Propagation and Gauss-Newton Refinement},
  booktitle = {CVPR},
  year      = {2020}
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].