All Projects → liruihui → Pu Gan

liruihui / Pu Gan

PU-GAN: a Point Cloud Upsampling Adversarial Network, ICCV, 2019

Labels

Projects that are alternatives of or similar to Pu Gan

Arm Assembly Cheat
MOVED TO: https://github.com/cirosantilli/linux-kernel-module-cheat#userland-assembly SEE README. ARMv7 and ARMv8 assembly userland minimal examples tutorial. Runnable asserts on x86 hosts with QEMU user mode or natively on ARM targets. Nice GDB step debug setup. Tested on Ubuntu 18.04 host and Raspberry Pi 2 and 3 targets.
Stars: ✭ 159 (-8.09%)
Mutual labels:  makefile
Ios Projects Catalogue
[Discontinued] Сatalogue of iOS open source projects.
Stars: ✭ 165 (-4.62%)
Mutual labels:  makefile
Android device xiaomi kenzo
Stars: ✭ 170 (-1.73%)
Mutual labels:  makefile
Drizzledumper
drizzleDumper是一款基于内存搜索的Android脱壳工具。
Stars: ✭ 2,002 (+1057.23%)
Mutual labels:  makefile
Http Echo
A tiny go web server that echos what you start it with!
Stars: ✭ 165 (-4.62%)
Mutual labels:  makefile
Specification
Serverless Workflow Specification
Stars: ✭ 166 (-4.05%)
Mutual labels:  makefile
Amiga Gcc
The GNU C-Compiler with Binutils and other useful tools for cross development for Amiga
Stars: ✭ 160 (-7.51%)
Mutual labels:  makefile
Gcc4mbed
Project to allow GCC compilation of code using mbed SDK libraries.
Stars: ✭ 171 (-1.16%)
Mutual labels:  makefile
Iterm2 Borderless
Borderless iTerm2 patch with a few extra features
Stars: ✭ 165 (-4.62%)
Mutual labels:  makefile
Easyndk For Cocos2dx
NDK is always a problem. Writing such a code that can become a breeze in connecting with other platforms is always a problem when working with cocos2dx. This repo is a step made forward to make this pain a simple step.
Stars: ✭ 168 (-2.89%)
Mutual labels:  makefile
Septun
Suricata Extreme Performance Tuning guide
Stars: ✭ 162 (-6.36%)
Mutual labels:  makefile
Intellij Makefile
Makefile support for IntelliJ-based IDEs
Stars: ✭ 164 (-5.2%)
Mutual labels:  makefile
Maid
Markdown driven task runner.
Stars: ✭ 1,999 (+1055.49%)
Mutual labels:  makefile
Small
Stars: ✭ 159 (-8.09%)
Mutual labels:  makefile
Uninstallfeedback
Show feedback page when the apk is uninstalled.
Stars: ✭ 169 (-2.31%)
Mutual labels:  makefile
Docker Quick Ref
Docker: Printable Quick Reference
Stars: ✭ 160 (-7.51%)
Mutual labels:  makefile
Dockerfiles
Development environment of EvaEngine, based on Docker
Stars: ✭ 166 (-4.05%)
Mutual labels:  makefile
Proprietary vendor oneplus
Stars: ✭ 172 (-0.58%)
Mutual labels:  makefile
Coturn Docker Image
Coturn TURN server Docker image
Stars: ✭ 169 (-2.31%)
Mutual labels:  makefile
Latex Makefile
A Makefile for LaTeX - drop it in, type make, and magic happens.
Stars: ✭ 168 (-2.89%)
Mutual labels:  makefile

PU-GAN: a Point Cloud Upsampling Adversarial Network

by Ruihui Li, Xianzhi Li, Chi-Wing Fu, Daniel Cohen-Or, Pheng-Ann Heng.

Introduction

This repository is for our ICCV 2019 paper 'PU-GAN: a Point Cloud Upsampling Adversarial Network'. The code is modified from 3PU and PU-Net.

Docker

A Dockerfile is provided to help you relief the pain of configurate training environment.

See the instructions in here.

Installation

This repository is based on Tensorflow and the TF operators from PointNet++. Therefore, you need to install tensorflow and compile the TF operators.

For installing tensorflow, please follow the official instructions in here. The code is tested under TF1.11 (higher version should also work) and Python 3.6 on Ubuntu 16.04.

For compiling TF operators, please check tf_xxx_compile.sh under each op subfolder in code/tf_ops folder. Note that you need to update nvcc, python and tensoflow include library if necessary.

Note

When running the code, if you have undefined symbol: _ZTIN10tensorflow8OpKernelE error, you need to compile the TF operators. If you have already added the -I$TF_INC/external/nsync/public -L$TF_LIB -ltensorflow_framework but still have cannot find -ltensorflow_framework error. Please use 'locate tensorflow_framework ' to locate the tensorflow_framework library and make sure this path is in $TF_LIB.

Usage

  1. Clone the repository:

    https://github.com/liruihui/PU-GAN.git
    cd PU-GAN
    
  2. Compile the TF operators Follow the above information to compile the TF operators.

  3. Train the model: First, you need to download the training patches in HDF5 format from GoogleDrive and put it in folder data/train. Then run:

    cd code
    python pu_gan.py --phase train
    
  4. Evaluate the model: First, you need to download the pretrained model from GoogleDrive, extract it and put it in folder 'model'. Then run:

    cd code
    python pu_gan.py --phase test
    

    You will see the input and output results in the folder data/test/output.

  5. The training and testing mesh files can be downloaded from GoogleDrive.

Evaluation code

We provide the code to calculate the uniform metric in the evaluation code folder. In order to use it, you need to install the CGAL library. Please refer this link and PU-Net to install this library. Then:

cd evaluation_code
cmake .
make
./evaluation Icosahedron.off Icosahedron.xyz

The second argument is the mesh, and the third one is the predicted points.

Citation

If PU-GAN is useful for your research, please consider citing:

@inproceedings{li2019pugan,
     title={PU-GAN: a Point Cloud Upsampling Adversarial Network},
     author={Li, Ruihui and Li, Xianzhi and Fu, Chi-Wing and Cohen-Or, Daniel and Heng, Pheng-Ann},
     booktitle = {{IEEE} International Conference on Computer Vision ({ICCV})},
     year = {2019}
 }

Questions

Please contact '[email protected]'

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].