Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcomusy/vedo-epug-tutorial
Tutorial for vedo
https://github.com/marcomusy/vedo-epug-tutorial
Last synced: about 1 month ago
JSON representation
Tutorial for vedo
- Host: GitHub
- URL: https://github.com/marcomusy/vedo-epug-tutorial
- Owner: marcomusy
- Created: 2023-12-05T18:01:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-12T12:40:27.000Z (about 1 year ago)
- Last Synced: 2024-10-12T00:35:46.985Z (2 months ago)
- Language: Python
- Size: 18.7 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vedo tutorial for the EMBL Python User Group
A python module for scientific analysis of 3D objects and point clouds.
## Setup and Run
```sh
pip install -U vedo
pip install scipy
```Copy this repo locally with:
```
git clone https://github.com/marcomusy/vedo-epug-tutorial.git
cd vedo-epug-tutorial
```To run the scripts:
```
cd scripts
python 01-vis_serie.py
```Inside jupyter notebooks you may want to declare the preferred backend to use, e.g.:
```py
from vedo import settings
settings.default_backend = "vtk"
```## Documentation
- [vedo webpage](https://vedo.embl.es/)
- [vedo API docs](https://vedo.embl.es/docs/)
- [EPUG activities](https://git.embl.de/grp-bio-it/EPUG).