Python SIMIND Monte Carlo Connector.
A Python toolkit that lets you run SIMIND from Python and use the outputs in common reconstruction ecosystems (STIR, SIRF, PyTomography).
This project is an independent Python connector toolkit and is not affiliated with, endorsed by, or maintained by the SIMIND project or Lund University.
SIMIND is not distributed with this package. You must separately obtain and install a licensed SIMIND installation.
- Full Documentation
- Installation
- Backend Support - adaptor dependency matrix
- Runs SIMIND from Python with a minimal, explicit API.
- Adapts SIMIND data for widely used Python reconstruction packages.
- Connector-first API -
SimindPythonConnectorfor direct SIMIND execution from Python - Package Adaptors - STIR/SIRF/PyTomography adaptors for reconstruction workflows
- Native reconstruction workflows - Use STIR/SIRF/PyTomography reconstruction tools with generated SIMIND data
- Dual scoring support - SCATTWIN and PENETRATE
- DICOM builders - DICOM-driven setup utilities for scanner/input preparation
- Advanced Schneider2000 density conversion - 44-segment HU-to-density mapping
pip install simind-python-connectorImport with:
import simind_python_connectorFor example plotting dependencies:
pip install "simind-python-connector[examples]"SimindPythonConnector works without SIRF/STIR/PyTomography.
Install optional packages only for the adaptor paths you need:
- STIR Python for
StirSimindAdaptorworkflows (example 07A) - SIRF for
SirfSimindAdaptorworkflows (example 07B) - PyTomography for
PyTomographySimindAdaptorworkflows (example 07C)
Install from conda:
conda install -c conda-forge stir "numpy<2.0"Important: As of November 2025, the STIR conda package (v6.3.0) requires NumPy < 2.0 due to binary compatibility issues with NumPy 2.x. The package was compiled against NumPy 1.x and will crash with memory errors if NumPy 2.x is installed. This should be resolved in future STIR releases.
Or build from source:
git clone https://github.com/UCL/STIR.git
cd STIR
# Follow build instructions in the repositoryInstall from source:
git clone https://github.com/SyneRBI/SIRF.git
cd SIRF
# Follow build instructions in the repositoryNote: SIRF includes STIR, so a separate STIR install is usually unnecessary.
Install PyTomography for the PyTomography adaptor workflow:
pip install pytomographySIMIND is not included with this package and must be installed separately.
Use the official SIMIND resources:
- SIMIND site (Medical Radiation Physics, Lund University): https://www.msf.lu.se/en/research/simind-monte-carlo-program
- SIMIND manual/docs: https://www.msf.lu.se/en/research/simind-monte-carlo-program/manual
For local use with this package's scripts, place your SIMIND installation under:
./simind
and make sure the executable is available at:
./simind/simind
and ensure SIMIND data files are available under:
./simind/smc_dir/
The Docker helper scripts use this layout and automatically wire SIMIND paths
when the binary exists at ./simind/simind.
For direct local runs outside the repository helpers, make sure the SIMIND
executable is available as simind on PATH.
import numpy as np
from simind_python_connector import SimindPythonConnector
from simind_python_connector.configs import get
source = np.zeros((32, 32, 32), dtype=np.float32) # z, y, x
source[12:20, 12:20, 12:20] = 1.0
mu_map = np.zeros_like(source)
mu_map[source > 0] = 0.15
connector = SimindPythonConnector(
config_source=get("Example.yaml"),
output_dir="output/basic",
output_prefix="case01",
quantization_scale=0.05,
)
connector.configure_voxel_phantom(
source=source,
mu_map=mu_map,
voxel_size_mm=4.0,
)
connector.set_energy_windows([126], [154], [0]) # Tc-99m ± 10%
connector.add_runtime_switch("FI", "tc99m")
connector.add_runtime_switch("CC", "ma-lehr")
connector.add_runtime_switch("NN", 1)
connector.add_runtime_switch("RR", 12345)
outputs = connector.run()
total = outputs["tot_w1"].projection
print(total.shape)from simind_python_connector.converters.attenuation import hu_to_density_schneider
import numpy as np
# Convert HU image to densities using Schneider2000 model
hu_image = np.array([[-1000, 0, 500], [800, 1200, 2000]])
density_map = hu_to_density_schneider(hu_image) # 44-segment clinical modelfrom simind_python_connector import RuntimeOperator, SimindPythonConnector
from simind_python_connector.configs import get
connector = SimindPythonConnector(
config_source=get("AnyScan.yaml"),
output_dir="output/python_connector",
output_prefix="case01",
quantization_scale=1.0,
)
outputs = connector.run(RuntimeOperator(switches={"NN": 1, "RR": 12345}))
total = outputs["tot_w1"]
print(total.projection.shape)
print(total.header_path)For minimal toy runs with smaller projection/image settings, use
get("Example.yaml").
quantization_scale controls source integer quantization before writing SIMIND
.smi files:
1.0: uses full internal source integer range (best numeric precision)< 1.0: reduces integer scale for faster toy runs but increases rounding error
SIMIND treats source maps as integer weights; absolute activity/time scaling is controlled separately by simulation settings.
Dedicated container definitions are provided in docker/:
docker/stir/Dockerfiledocker/sirf/Dockerfiledocker/pytomography/Dockerfile
Use Docker Compose:
docker compose -f docker/compose.yaml build stir
docker compose -f docker/compose.yaml run --rm stirRun per-backend validation and separated examples:
bash scripts/run_container_validation.sh
bash scripts/run_container_validation.sh --with-simind
bash scripts/run_container_examples.shPlease see the Contributing Guide.
Apache License 2.0