Python SIMIND Monte Carlo connector with STIR/SIRF/PyTomography adaptors
Project description
simind-python-connector
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).
Disclaimer
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.
Quick Links
- Full Documentation
- Installation
- Backend Support - adaptor dependency matrix
What This Package Does
- Runs SIMIND from Python with a minimal, explicit API.
- Adapts SIMIND data for widely used Python reconstruction packages.
Key Features
- 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
Installation
Basic Installation
pip install simind-python-connector
Import path remains:
import simind_python_connector
Adaptor Dependencies
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)
Option 1: STIR Python (Recommended for basic usage)
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 repository
Option 2: SIRF
Install from source:
git clone https://github.com/SyneRBI/SIRF.git
cd SIRF
# Follow build instructions in the repository
Note: SIRF includes STIR, so a separate STIR install is usually unnecessary.
Option 3: PyTomography
Install PyTomography for the PyTomography adaptor workflow:
pip install pytomography
SIMIND Requirement
SIMIND 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.
Quick Start
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)
Advanced Density Conversion
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 model
Pure Python Connector (NumPy Outputs)
from 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.
Docker Environments
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 stir
Run 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.sh
Contributing
Please see our Contributing Guide.
License
Apache License 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file simind_python_connector-1.0.0.tar.gz.
File metadata
- Download URL: simind_python_connector-1.0.0.tar.gz
- Upload date:
- Size: 145.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b3b7e20eac032cabb12546451524d2082329e910db5903f30f912d10c0eca20
|
|
| MD5 |
b3039675bdf9fcb498d1db725e52a442
|
|
| BLAKE2b-256 |
065c101fe6ec6a383abe64b7bae26c93a4100ba12d368301e8c1a160b9ec90a6
|
File details
Details for the file simind_python_connector-1.0.0-py3-none-any.whl.
File metadata
- Download URL: simind_python_connector-1.0.0-py3-none-any.whl
- Upload date:
- Size: 96.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5252c1fafade556a4c7f980c21f133b22769705e0592b672d2c5b02226ac4f28
|
|
| MD5 |
5a4738a25b14490b17b5b62e95dc722d
|
|
| BLAKE2b-256 |
7356fa6355780287262cbdb548bc92254da4e5d2f0fa11eff0980d9a36996f6f
|