• Stars
    star
    199
  • Rank 196,105 (Top 4 %)
  • Language
    C++
  • License
    MIT License
  • Created about 9 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Python implementation of surface mesh resampling algorithm ACVD

pyacvd

This module takes a surface mesh and returns a uniformly meshed surface using voronoi clustering. This approach is loosely based on research by S. Valette, and J. M. Chassery in ACVD.

Installation

Installation is straightforward using pip:

$ pip install pyacvd

Example

This example remeshes a non-uniform quad mesh into a uniform triangular mesh.

from pyvista import examples
import pyacvd

# download cow mesh
cow = examples.download_cow()

# plot original mesh
cow.plot(show_edges=True, color='w')

original cow mesh

zoomed cow mesh

clus = pyacvd.Clustering(cow)
# mesh is not dense enough for uniform remeshing
clus.subdivide(3)
clus.cluster(20000)

# plot clustered cow mesh
clus.plot()

zoomed cow mesh

# remesh
remesh = clus.create_mesh()

# plot uniformly remeshed cow
remesh.plot(color='w', show_edges=True)

zoomed cow mesh

More Repositories

1

pyvista

3D plotting and mesh analysis through a streamlined interface for the Visualization Toolkit (VTK)
Python
2,689
star
2

pymeshfix

Python Wrapper for MeshFix: easily repair holes in surface meshes
C++
283
star
3

tetgen

A Python interface to the C++ TetGen library to generate tetrahedral meshes of any 3D polyhedral domains
C++
223
star
4

pyvistaqt

Qt support for PyVista
Python
108
star
5

pyvista-xarray

xarray DataArray accessors for PyVista
Python
98
star
6

fast-simplification

Fast Quadratic Mesh Simplification
C++
95
star
7

pyvista-support

[moved] Please head over to the Discussions tab of the PyVista repository
59
star
8

pyvista-tutorial

PyVista SciPy 2022-2024 Tutorial
Python
56
star
9

scikit-gmsh

Scikit for Gmsh to generate 3D finite element mesh
Python
41
star
10

vtk-data

PyVista example data - These are used for examples in both PyVista and PVGeo
G-code
38
star
11

pyiges

Python IGES Reader
Python
34
star
12

setup-headless-display-action

GitHub Action to setup a headless display on Linux and Windows (not needed on MacOS)
PowerShell
17
star
13

pyvista-reality

OpenVR and OpenXR variants of PyVista
Python
17
star
14

pyvista-gui

A Graphical User Interface built atop PyVista
Python
14
star
15

pytest-pyvista

Plugin to test PyVista plot outputs
Python
13
star
16

pyvista-fastapi-webapp

Demo FastAPI and Three.js application using PyVista
TypeScript
13
star
17

pyvistaqt-exe

Create a Windows installable exe from a PyVistaQt application
Python
12
star
18

pyvista-examples

A place where we host the Jupyter notebooks found in the PyVista docs for use on MyBinder - this repo is automatically deployed by our CI robot friends - NO PRs HERE PLEASE
Dockerfile
11
star
19

pyvista-wheels

VTK wheels for PyVista
Python
8
star
20

vtkjs-viewer

This repo is strictly for the purpose of hosting the vtk.js standalone web viewer
JavaScript
7
star
21

streamlit-pyvista

Python
6
star
22

gl-ci-helpers

Continuous integration helper scripts for your 3D visualization needs
PowerShell
6
star
23

pyminiply

Wrapper over the excellent and fast miniply to read PLY files
Python
5
star
24

pyvista-media

PostScript
4
star
25

pyvista-doc-translations

translated docs for pyvista official document
Python
4
star
26

stl-reader

Fast STL file reader
C++
4
star
27

pytetwild

Python wrapper for fTetWild
C++
4
star
28

pyvista-docs-dev

A place where we host the most up to date development documentation for PyVista
HTML
3
star
29

show-room

[WIP] A set of domain specific examples to showcase how PyVista can be used
Jupyter Notebook
3
star
30

cookiecutter-pyvista-binder

This is a Cookiecutter for using PyVista on the notebook hosting service MyBinder.
Jupyter Notebook
3
star
31

pyvista-docs-dynamic

3
star
32

panel-pyvista

Demonstrate using PyVista, Trame, and Panel in a SPA
Python
3
star
33

pyvista-tutorial-translations

translated docs for pyvista official tutorial
Jupyter Notebook
2
star
34

awesome-pyvista

A curated list of awesome stuff related to PyVista 😎
Python
2
star
35

pyvista-tutorial-ja

A place where we host the most up to date tutorial for PyVista
2
star
36

npt-promote

Mypy plugin to add type promotions between NumPy and builtin data types.
Python
2
star
37

pyvista-optimized

Cython optimizations and overrides to PyVista
2
star
38

multiversion-docs-testing

1
star
39

pyvista-osmnx

1
star
40

pyvista-doc-example

Example Documentation build using PyVista
1
star
41

pyvista-docs-dev-ja

1
star
42

pyvista-docs-archive

A place where we automatically deploy the PyVista documentation
HTML
1
star
43

pyvista-bot

Python
1
star
44

pyvista-docs-netlify-multiversion-archive

no longer in use
HTML
1
star
45

examples

`pyvista-examples` contains a variety of built-in demos and downloadable example datasets.
Python
1
star
46

streamlit-stlviewer

Python
1
star