All Projects → Erkaman → Hole_fixer

Erkaman / Hole_fixer

Licence: mit
Demo implementation of smoothly filling holes in 3D meshes using surface fairing

Programming Languages

processing
702 projects

Projects that are alternatives of or similar to Hole fixer

Building Blocks
A voxel library for real-time applications.
Stars: ✭ 140 (-15.15%)
Mutual labels:  3d, mesh, geometry
Sophus
C++ implementation of Lie Groups using Eigen.
Stars: ✭ 1,048 (+535.15%)
Mutual labels:  3d, math, geometry
Poisson blend
Seamless copy-and-paste of images with Poisson Blending.
Stars: ✭ 277 (+67.88%)
Mutual labels:  demo, math, eigen
Mathnet Spatial
Math.NET Spatial
Stars: ✭ 246 (+49.09%)
Mutual labels:  3d, math, geometry
Spatialmath Python
Create, manipulate and convert representations of position and orientation in 2D or 3D using Python
Stars: ✭ 78 (-52.73%)
Mutual labels:  3d, math
Pymeshfix
Python Wrapper for MeshFix: easily repair holes in PyVista surface meshes
Stars: ✭ 75 (-54.55%)
Mutual labels:  3d, mesh
Plexus
Polygonal mesh processing.
Stars: ✭ 90 (-45.45%)
Mutual labels:  mesh, geometry
Assetkit
🎨 Modern 2D/3D - Importer • Exporter • Util - Library, also called (AssetIO)
Stars: ✭ 97 (-41.21%)
Mutual labels:  3d, mesh
Trimesh
Python library for loading and using triangular meshes.
Stars: ✭ 1,303 (+689.7%)
Mutual labels:  mesh, geometry
Gl Catmull Clark
A javascript implementation of the Catmull-Clark subdivision surface algorithm
Stars: ✭ 100 (-39.39%)
Mutual labels:  mesh, demo
Aardvark.base
Aardvark is an open-source platform for visual computing, real-time graphics and visualization. This repository is the basis for most platform libraries and provides basic functionality such as data-structures, math and much more.
Stars: ✭ 117 (-29.09%)
Mutual labels:  math, geometry
Cityengine Sdk
CityEngine is a 3D city modeling software for urban design, visual effects, and VR/AR production. With its C++ SDK you can create plugins and standalone apps capable to execute CityEngine CGA procedural modeling rules.
Stars: ✭ 137 (-16.97%)
Mutual labels:  3d, geometry
Unity Plane Mesh Splitter
Unity Plane Mesh Splitter
Stars: ✭ 71 (-56.97%)
Mutual labels:  3d, mesh
Math Toolbox
Lightweight and modular math toolbox
Stars: ✭ 71 (-56.97%)
Mutual labels:  math, geometry
3dhop
3D Heritage Online Presenter
Stars: ✭ 89 (-46.06%)
Mutual labels:  3d, mesh
Pymesh
Geometry Processing Library for Python
Stars: ✭ 1,135 (+587.88%)
Mutual labels:  3d, geometry
Wave geometry
Manifold geometry with fast automatic derivatives and coordinate frame semantics checking
Stars: ✭ 92 (-44.24%)
Mutual labels:  math, geometry
Xbimgeometry
XbimGeometry contains the CLR interop libraries and the c++ engine used to compute the 3D geometry of models.
Stars: ✭ 152 (-7.88%)
Mutual labels:  3d, geometry
Rich Text Editor
Math editor (http://digabi.github.io/rich-text-editor/)
Stars: ✭ 45 (-72.73%)
Mutual labels:  demo, math
Meshcnn
Convolutional Neural Network for 3D meshes in PyTorch
Stars: ✭ 1,032 (+525.45%)
Mutual labels:  3d, mesh

hole_fixer - Demo implementation of smoothly filling holes in 3D meshes using surface fairing

An implementation of Surface Fairing, that demonstrates the concepts explained in my article.

This demo program allows you to specify a broken mesh with a hole, that the program will fix. By running the command line

hole_fixer -in bunnyhole.off -out out.off -outfaces 8000 -upsample 2

The above pictured bunny mesh will be fixed, and the fixed mesh is written to out.off.

NOTE: the implementation is not by any means optimized, in order to keep it simple and readable.

Building

The only dependencies are libigl and Eigen. Both of which are included within this repository.

We use CMake for building. If on Linux or OS X, you can build it in the terminal by doing something like:

mkdir build && cd build && cmake .. && make

If on Windows, create a build/ folder, and run cmake .. from inside that folder. This will create a visual studio solution(if you have visual studio). Launch that solution, and then simply compile the project named hole_fixer.

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