List of software and versions required before installation:
- Docker
To start using the docker container you just need to pull it from
docker pull ghcr.io/damintsew/simple-elastix-base:latestOr if you prefer from Docker hub you can use this command
docker pull docker.io/damintsew/simple-elastix-base:latestBasically you just have to import SimpleITK and Elastix in your python code, and you are good to go.
import SimpleITK as sitk
print(sitk.Version())How to check if everything inside container works properly :
- Run Docker container:
docker run -it --rm damintsew/simple-elastix-base:latest sh -c "sleep 99999"- Step into the container:
docker exec -it <container_id> sh- Run python code:
python
import SimpleITK as sitk
print(sitk.Version())Steps to build the Docker image:
- Run the following command in the project directory:
docker build -t your-image-name .
This project is licensed under the Apache 2.0 License.