Python suite of helper functions for Shape-from-Shading processing, including wrappers to the Ames Stereo Pipeline (ASP) and USGS Integrated Software for Imagers and Spectrometers (ISIS).
This is scientific code in ongoing development: using it might be tricky, reading it can cause headaches and results need to be thoroughly checked and taken with an healthy degree of mistrust! Use it at your own risk and responsibility.
Make a new directory and clone this repository to it. Then, inside the
directory that you've just created, run python -m venv env
. This will
create a "virtual environment", which is a useful tool that Python
provides for managing dependencies for projects. The new directory
"contains" the virtual environment.
To activate the virtual environment, run source env/bin/activate
from
the directory containing it. Make sure to do this before doing
anything else below.
Install the rest of the dependencies by running pip install -r requirements.txt
.
Finally, run:
pip install .
To install the package in editable mode, so that changes in this directory propagate immediately, run:
pip install -e .
To test the installation, from the project directory, run:
python setup.py test