All Projects → suhangpro → Mvcnn

suhangpro / Mvcnn

Licence: mit
Multi-view CNN (MVCNN) for shape recognition

Programming Languages

matlab
3953 projects

Projects that are alternatives of or similar to Mvcnn

Meshcnn
Convolutional Neural Network for 3D meshes in PyTorch
Stars: ✭ 1,032 (+262.11%)
Mutual labels:  computer-graphics, convolutional-neural-networks
Fssgi
Exploratory Project on Fast Screen Space Global Illumination
Stars: ✭ 22 (-92.28%)
Mutual labels:  computer-graphics, convolutional-neural-networks
Colorization Pytorch
PyTorch reimplementation of Interactive Deep Colorization
Stars: ✭ 449 (+57.54%)
Mutual labels:  computer-graphics, convolutional-neural-networks
Anime4k
A High-Quality Real Time Upscaler for Anime Video
Stars: ✭ 14,083 (+4841.4%)
Mutual labels:  computer-graphics, convolutional-neural-networks
Deeplearning.ai Assignments
Stars: ✭ 268 (-5.96%)
Mutual labels:  convolutional-neural-networks
CPURasterizer
CPU Based Rasterizer Engine
Stars: ✭ 99 (-65.26%)
Mutual labels:  computer-graphics
Book-list-of-computational-geometry-and-computer-graphics
Book list of computational geometry and computer graphics 计算几何和计算机图形学必读书单与经典书籍
Stars: ✭ 374 (+31.23%)
Mutual labels:  computer-graphics
ACVD
a program to perform fast simplification of 3D surface meshes
Stars: ✭ 124 (-56.49%)
Mutual labels:  computer-graphics
Bonnet
Bonnet: An Open-Source Training and Deployment Framework for Semantic Segmentation in Robotics.
Stars: ✭ 274 (-3.86%)
Mutual labels:  convolutional-neural-networks
Easy Tensorflow
Simple and comprehensive tutorials in TensorFlow
Stars: ✭ 2,871 (+907.37%)
Mutual labels:  convolutional-neural-networks
Grad Cam Tensorflow
tensorflow implementation of Grad-CAM (CNN visualization)
Stars: ✭ 261 (-8.42%)
Mutual labels:  convolutional-neural-networks
instant-ngp
Instant neural graphics primitives: lightning fast NeRF and more
Stars: ✭ 1,863 (+553.68%)
Mutual labels:  computer-graphics
Pytorch Saltnet
Kaggle | 9th place single model solution for TGS Salt Identification Challenge
Stars: ✭ 270 (-5.26%)
Mutual labels:  convolutional-neural-networks
CLUSEK-RT
Vulkan based C++ ray-tracing game engine.
Stars: ✭ 24 (-91.58%)
Mutual labels:  computer-graphics
Cnn Registration
A image registration method using convolutional neural network features.
Stars: ✭ 272 (-4.56%)
Mutual labels:  convolutional-neural-networks
SuperShapes
A tiny macOS app showing how to use Satin, Forge, Youi and SwiftUI to visualize super shapes in 3D.
Stars: ✭ 42 (-85.26%)
Mutual labels:  computer-graphics
Keras Non Local Nets
Keras implementation of Non-local Neural Networks
Stars: ✭ 264 (-7.37%)
Mutual labels:  convolutional-neural-networks
Fewshot gan Unet3d
Tensorflow implementation of our paper: Few-shot 3D Multi-modal Medical Image Segmentation using Generative Adversarial Learning
Stars: ✭ 272 (-4.56%)
Mutual labels:  convolutional-neural-networks
Abcnn
Implementation of ABCNN(Attention-Based Convolutional Neural Network) on Tensorflow
Stars: ✭ 264 (-7.37%)
Mutual labels:  convolutional-neural-networks
3d Quickhull
Header only 3d quickhull in c99
Stars: ✭ 259 (-9.12%)
Mutual labels:  computer-graphics

Multi-view CNN (MVCNN) for shape recognition

Project Page MVCNN pipeline

The goal of the project is to learn a general purpose descriptor for shape recognition. To do this we train discriminative models for shape recognition using convolutional neural networks (CNNs) where view-based shape representations are the only cues. Examples include line-drawings, clip art images where color is removed, or renderings of 3D models where there is little or no texture information present.

If you use any part of the code from this project, please cite:

@inproceedings{su15mvcnn, author = {Hang Su and Subhransu Maji and Evangelos Kalogerakis and Erik G. Learned{-}Miller}, title = {Multi-view convolutional neural networks for 3d shape recognition}, booktitle = {Proc. ICCV}, year = {2015}}

Other implementations

(These are implementations provided by friends or found online, and are listed here for your convenience. I do not provide direct support on them.)

Installation

  • Install dependencies
git submodule update --init
  • Compile

compile for CPU:

# two environment variables might need to be set, e.g. MATLABDIR=<MATLAB_ROOT> MEX=<MATLAB_ROOT>/bin/mex
matlab -nodisplay -r "setup(true);exit;"

compile for GPU (w/ cuDNN):

# 1) two environment variables might need to be set, e.g. MATLABDIR=<MATLAB_ROOT> MEX=<MATLAB_ROOT>/bin/mex
# 2) other compilation options (e.g. 'cudaRoot',<CUDA_ROOT>,'cudaMethod','nvcc','cudnnRoot',<CUDNN_ROOT>) 
#  might be needed in the 'struct(...)' as well depending on you system settings
matlab -nodisplay -r "setup(true,struct('enableGpu',true,'enableCudnn',true));exit;"

Note: you can alternatively run directly the scripts from the Matlab command window, e.g. for Windows installations: setup(true,struct('enableGpu',true,'cudaRoot','C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v7.0','cudaMethod','nvcc')); You may also need to add Visual Studio's cl.exe in your PATH environment (e.g., C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\amd64)

Usage

  • Extract descriptor for a shape (.off/.obj mesh). The descriptor will be saved in a .txt file (e.g. bunny_descriptor.txt). Uses default model with no fine-tuning. Assumes upright orientation by default.
MATLAB> shape_compute_descriptor('bunny.off');
  • Extract descriptor for all shapes in a folder (.off/.obj meshes). The descriptors will be saved in .txt files in the same folder. Assumes no upright orientation.
MATLAB> shape_compute_descriptor('my_mesh_folder/','useUprightAssumption',false);
  • Extract descriptors for all shapes in a folder (.off/.obj meshes) and post-process descriptors with learned metric. Uses non-default models.
MATLAB> shape_compute_descriptor('my_mesh_folder/', 'cnnModel', 'my_cnn.mat', ...
'metricModel', 'my_metric.mat','applyMetric',true); 
  • Download datasets for training/evaluation (should be placed under data/)

    • modelnet40v1 (12 views w/ upright assumption): tarball (204M)
    • modelnet40v2 (80 views w/o upright assumption): tarball (1.3G)
    • shapenet55v1 (12 views w/ upright assumption): tarball (2.4G)
    • shapenet55v2 (80 views w/o upright assumption): tarball (15G)
  • Run training examples (see run_experiments.m for details)

# LD_LIBRARY_PATH might need to be set, e.g. LD_LIBRARY_PATH=<CUDA_ROOT>/lib64:<CUDNN_ROOT> 
matlab -nodisplay -r "run_experiments;exit;"
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].