- 2 URL parameters:
?nvd=<url>: Open the niivue document at the specified URL?vol=<url>: Open the volume at the specified URL
- Initial support for Surfaces (WIP)
- 4d volume support
- UI element to manipulate label intent code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # provision-freeview-gpu.sh | |
| # Configure a Jetstream2 GPU instance (g3.*, GRID A100X vGPU) for hardware- | |
| # accelerated FreeView over the Exosphere web desktop (TurboVNC + Guacamole). | |
| # | |
| # What it does: | |
| # 1. Installs VirtualGL — FreeView renders on the vGPU via EGL, VirtualGL | |
| # reads frames back into the (CPU-driven) VNC X server. | |
| # 2. Adds freeview/tkmeditfv aliases that route through vglrun. The | |
| # __EGL_VENDOR_LIBRARY_FILENAMES pin is needed because Mesa's EGL vendor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # Install FreeSurfer 8.2.0 on Ubuntu 24.04 | |
| # | |
| # Ported from: | |
| # - https://github.com/pwighton/fs-docker/blob/master/freesurfer/Dockerfile.8.2.0 | |
| # See also: | |
| # - https://surfer.nmr.mgh.harvard.edu/fswiki/rel7downloads/rel8notes | |
| set -euo pipefail |
singularity run \
--cleanenv \
-B /autofs/cluster/gerenuk/pwighton/singularity-images/license.txt:/license.txt \
-B /autofs/cluster/gerenuk/pwighton/fmriprep-singularity/ds003455:/data \
--env FS_LICENSE='/license.txt' \
/autofs/cluster/gerenuk/pwighton/singularity-images/fmriprep-20.2.0rc2.simg \
/data \
/data/derivatives2 \
participant \
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import argparse | |
| import socket | |
| import traceback | |
| parser = argparse.ArgumentParser(description="Parse command line options") | |
| parser.add_argument("port") | |
| parser.add_argument("outfile") | |
| args = parser.parse_args() |
- CorticoMetrics is working to bring FreeSurfer to the clinic
- To be used in the clinic, it needs to be FDA approved as a "Class II medical device"
- A Medical device must be developed under a QMS (Quality Management System)
- A QMS is a set of business processes and records that must be adhered to
- "Design Review"
- "Validation"
Notes on how to install FreeSurfer 6.0 so that every command used during the course tutorials can be run. This fills in some missing details documented here
- Follow instructions here to download and install FreeSurfer
- Download tutorial data from here and extract
- Patch FreeView (scroll to bottom of page)
NewerOlder