resector
Algorithm to simulate resection surgery on brain MRI scans. Published in MICCAI 2020, extended in IJCARS.
File Explorer
- ISSUE_TEMPLATE.md
- 60_examples_resized_50.gif
- authors.rst
- conf.py
- contributing.rst
- history.rst
- index.rst
- installation.rst
- make.bat
- Makefile
- readme.rst
- usage.rst
- __init__.py
- create_noise_volume.py
- resect.py
- geodesic_polyhedron.vtp
- volumes.csv
- __init__.py
- BrainAnatomyLabelsV3_0.txt
- image.py
- io.py
- mesh.py
- parcellation.py
- random_resection.py
- resector.py
- shape.py
- texture.py
- timer.py
- take_screenshots.py
- create_sphere_mesh.py
- mesh_to_vol.py
- perlin_image.py
- perlin_sphere.py
- brain.vtp
- Resector.py
- Resynth.py
- __init__.py
- test_resector.py
- .editorconfig
- .gitignore
- .pylintrc
- .travis.yml
- CONTRIBUTING.rst
- HISTORY.rst
- LICENSE
- Makefile
- MANIFEST.in
- README.md
- requirements_dev.txt
- setup.cfg
- setup.py
- tox.ini
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
conda create
View Details ▼
conda create
Create new conda environments.
conda create {{[-y|--yes]}} {{[-n|--name]}} py39 python=3.9 "numpy>=1.11" scipy
Create a new environment named `py39`, install Python 3.9, NumPy v1.11 or above in it, and the latest stable version of SciPy. Say yes to all confirmations:
conda create {{[-n|--name]}} myenv --file {{file1.yml}} --file {{file2.yml}}
Create a new environment named `myenv` and install packages listed in files:
conda create {{[-p|--prefix]}} {{path/to/myenv}}
Create a new environment at a custom path (i.e. prefix):
conda
View Details ▼
conda
Package, dependency, and environment management for any programming language.
Some subcommands such as `create` have their own usage documentation.
See also: `mamba`.
conda create {{[-n|--name]}} {{environment_name}} {{python=3.9 matplotlib}}
Create a new environment, installing named packages into it:
conda info {{[-e|--envs]}}
List all environments:
conda activate {{environment_name}}
Activate an environment:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
