Troubleshooting
Common issues and solutions for PhysioMotion4D.
Installation Issues
CUDA Out of Memory
Problem: RuntimeError: CUDA out of memory
Solutions:
Resample or crop the input image before running the workflow.
Use
--registration-method antswhen CUDA is unavailable.Process fewer frames per run.
CUDA Version Mismatch
Problem: Errors such as cupy failing to import, torch.cuda.is_available()
returning False, or runtime messages indicating a CUDA library version conflict.
Cause: The installed cupy or PyTorch wheel was built for a different CUDA
version than the one present on the system.
Solution: Install the CUDA 13 extra:
uv pip install "physiomotion4d[cuda13]"
The extra installs CuPy. In uv-managed source environments, PyTorch resolves from the CUDA 13.0 wheel index.
Verify the active CUDA version before reinstalling:
nvidia-smi # shows driver and CUDA version
Note
If you have no NVIDIA GPU, a plain pip install physiomotion4d installs a
CPU-only build. CuPy is absent and a UserWarning is emitted at import time.
CPU execution of all operations is supported but will be significantly slower
than a GPU-enabled install.
Import Errors
Problem: ImportError: No module named 'itk'
Solution: Reinstall with all dependencies:
pip install --upgrade physiomotion4d
Processing Issues
Poor Segmentation Quality
Problem: Segmentation masks are inaccurate
Solutions:
Check if image is contrast-enhanced:
workflow = WorkflowConvertHeartGatedCTToUSD( ..., contrast_enhanced=True # or False )
Preprocess intensity, spacing, and field of view before invoking the workflow.
Registration Not Converging
Problem: Registration produces poor results
Solutions:
Increase
--registration-iterationsfor the heart-gated CT CLI.Try different method:
physiomotion4d-heart-gated-ct cardiac_4d.nrrd --registration-method ants
Check image orientation and spacing
USD Issues
USD Not Animating
Problem: USD file loads but doesn’t animate
Solutions:
Validate USD file:
usdchecker model.usdCheck time samples:
usdview model.usdVerify that the generated USD contains time samples.
USD File Too Large
Problem: USD files are very large
Solutions:
Reduce mesh complexity before USD export.
Export fewer anatomy groups or fewer time points.
Performance Issues
Slow Processing
Problem: Processing takes too long
Solutions:
Install
physiomotion4d[cuda13]with uv for CUDA acceleration.Reduce
--registration-iterationsduring exploratory runs.Run tutorial workflows with reduced frame counts where supported.
Getting Help
If you still have issues:
Check FAQ
Search GitHub Issues
Open a new issue with:
Python version
CUDA version
Complete error message
Minimal code to reproduce