Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Render a single DRR fluoroscopy frame from a CT cache or synthetic phantom. Use when asked to render DRR, generate a fluoro image, or smoke-test the Slang renderer.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-12 | ✗→✓ | ▲ Improved | -16% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -8% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 15% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 5% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -13% | 0% |
Render a single digitally reconstructed radiograph (DRR) frame. Works with a preprocessed CT cache from i4h-catheter-navigation-digital-twin]], a direct NIfTI/DICOM path, or the built-in synthetic phantom (no data required).
bashROOT="${I4H_WORKFLOWS:-$(git rev-parse --show-toplevel 2>/dev/null)}" if [ ! -d "$ROOT/workflows/catheter_navigation" ]; then ROOT="${I4H_WORKFLOWS:-$HOME/i4h-workflows}" [ -d "$ROOT/workflows/catheter_navigation" ] || git clone https://github.com/isaac-for-healthcare/i4h-workflows "$ROOT" fi export I4H_WORKFLOWS="$ROOT"; cd "$ROOT"
metadata.json; self-contained with synthetic phantom when no --cache is given../i4h run catheter_navigation render_drr (preferred).Run the steps below in order. Each step is a separate bash call; variables persist in the local agent's tmux session.
bashREPO_ROOT="${I4H_WORKFLOWS:-$(git rev-parse --show-toplevel 2>/dev/null)}"; [ -d "$REPO_ROOT/workflows/catheter_navigation" ] || REPO_ROOT="$HOME/i4h-workflows" WF_ROOT="${REPO_ROOT}/workflows/catheter_navigation" RUN_DIR="${WF_ROOT}/runs/render_drr_$(date +%Y%m%d_%H%M%S)" mkdir -p "${RUN_DIR}/logs" ln -sfn "${RUN_DIR}" "${WF_ROOT}/runs/.latest" OUTPUT="${RUN_DIR}/drr.png" CACHE="${CACHE:-}"
Synthetic phantom (fastest smoke, no data):
bash"${REPO_ROOT}/i4h" run catheter_navigation render_drr --local \ --run-args="--output ${OUTPUT}" \ 2>&1 | tee "${RUN_DIR}/logs/render_drr.log"
From preprocessed cache:
bashif [ ! -d "${CACHE}" ] || [ ! -f "${CACHE}/mu_volume.npy" ]; then echo "render-drr: set CACHE to a preprocess_ct output dir (missing mu_volume.npy)." >&2 exit 1 fi "${REPO_ROOT}/i4h" run catheter_navigation render_drr --local \ --run-args="--cache ${CACHE} --output ${OUTPUT}" \ 2>&1 | tee "${RUN_DIR}/logs/render_drr.log"
bashtest -f "${OUTPUT}" file "${OUTPUT}"
CatheterProvider in custom scripts (not the default example).--local to use Docker, or verify GPU driver >= 570 and CUDA 12.8.--cache).Report output PNG path, whether synthetic or patient cache was used, and log path. Recommend i4h-catheter-navigation-viewport]] for interactive navigation.
Other measured skills in the registry, with their headline benchmark lift.