Skip to content

A python library for fast prototyping in geometry processing.

License

Notifications You must be signed in to change notification settings

cg3hci/py3DViewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Py3DViewer Logo Binder

Fast research and prototyping, nowadays, is shifting towards languages that allow interactive execution and quick changes. Python is very widely used for rapid prototyping. Py3DViewer is a new Python library that allows researchers to quickly prototype geometry processing algorithms by interactively editing and viewing meshes. Polygonal and polyhedral meshes are both supported. The library is designed to be used in conjunction with Jupyter environments, which allow interactive Python code execution and data visualization in a browser, thus opening up the possibility of viewing a mesh while editing the underlying geometry and topology.


Installation

If you have never used Jupyter, then the first step is to install and configure Jupyter on your computer. You can follow this guide to do it.

Py3DViewer can be easily installed with pip:

pip install git+https://github.com/cg3hci/py3DViewer

Then, install the extension for jupyter notebooks:

jupyter nbextension install --py --symlink --sys-prefix pythreejs
jupyter nbextension enable --py --sys-prefix pythreejs

Or for jupyter lab:

jupyter labextension install @jupyter-widgets/jupyterlab-manager 
jupyter labextension install jupyter-threejs

Finally, you need to install the Jupyter widgets extension for notebooks:

jupyter nbextension enable --py widgetsnbextension

Or for jupyter lab:

jupyter labextension install @jupyter-widgets/jupyterlab-manager

Getting Started

The library is designed to be easy and quick to use in the context of fast prototyping. In the example below it is shown how a mesh can be loaded from a file and drawn in a canvas with just a few lines of code.

from Py3DViewer import Trimesh
m = Trimesh('data/goyle_tris.obj')
m.show()

More examples are available here!

Documentation

You can find the complete documentation of the library here!

Deployment

We are working to extend the kinds of geometric data that the library supports, to appeal to an even broader part of the community. For the animation community, we are working to fully support skeletons, both for editing and visualizing. Ideally, similar to what some other libraries are doing, Py3DViewer will support generic polygonal or polyhedral meshes, and point clouds. By making the system as modular as possible, we are working to make it easy to extend the supported data representations by making the viewer and the interface as data agnostic as possible.

We aim to completely integrate PyTorch tensors to represent the geometry information of a mesh, so that any tensorial operation on the underlying data structure could be seamlessly executed on the GPU by simply passing GPU-instantiated tensors to our data structures or by loading a mesh file directly on the GPU.

In the near future, the interactive Jupyter interface will be extended to more widgets and will support adding custom UI elements to better suit each different user's need.

More generally, the library will continuously improve in its documentation and examples. To facilitate prototyping for new users, we are working to implement interactive examples in the form of tutorial notebooks, by using the Binder platform as a mean to quickly try our library's features.

One of the most important features we will implement in the near future, is a complete PyTorch support for the data structures and algorithms for the underlying representation, instead of Numpy, if the user so chooses. This feature will allow the library to seamlessly run its algorithms on the GPU, to speed up parallel computations and to allow researchers to easily and efficiently prototype Geometry Processing algorithms and Deep Learning networks.

Authors

Gianmarco Cherchi, Luca Pitzalis, Giovanni Laerte Frongia and Riccardo Scateni

University of Cagliari (Italy)

Other Contributors

Chiara Manca, Giampaolo Perelli, Alessandra Perniciano, Alessandro Vacca (University of Cagliari).

Contributing

Pull requests are welcome! For major changes, please open an issue first to discuss what you would like to change.

Cite Us

Please cite our paper if you use the Py3DViewer in your own work:

@inproceedings {py3dviewer2019,
  title = {{The Py3DViewer Project: A Python Library for fast Prototyping in Geometry Processing}},
  author = {Cherchi, Gianmarco and Pitzalis, Luca and Frongia, Giovanni Laerte and Scateni, Riccardo},
  booktitle = {Smart Tools and Apps for Graphics - Eurographics Italian Chapter Conference},
  year = {2019},
  publisher = {The Eurographics Association},
  ISSN = {2617-4855},
  ISBN = {978-3-03868-100-7},
  DOI = {10.2312/stag.20191374}
}

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

More Information

For other information you can contact one of the main developers of the library: G. Cherchi (g.cherchi@unica.it) and L. Pitzalis (luca.pitzalis94@gmail.com).

About

A python library for fast prototyping in geometry processing.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages