- 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
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)
- Description of the platform/product:
- name and version of the software: FreeSurfer 6.0
- free?: yes
- commercial?: no
- open source?: yes
- what DICOM library do you use?: DCMQI to write DICOM-SEG
- Description of the relevant features of the platform: Freesurfer's subcortical segmentation results can be converted to DICOM-SEG using
fs-aseg.jsonthat has been kindly provided by Emily Lindemer. - are both single and multiple segments supported?: Yes, however Freesurfer's subcortical segmentation process assumes a mutually exclusive label set.
- do you support both BINARY and FRACTIONAL segmentation types? BINARY only.
- do you support compressed objects? I beleive itkimage2
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
| FROM amazonlinux:latest | |
| # root does everything for now | |
| # --------------------------------------------------------------------- | |
| USER root | |
| # For freesurfer | |
| # --------------------------------------------------------------------- | |
| # So that we can run `yum -y install git-lfs` | |
| RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | bash |