This file contains 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 python | |
# -*- coding: utf-8 -*- | |
"""Normalize the intensity of a set of images by | |
finding the median 99th percentile of all images | |
and dividing each image by that value | |
Author: Jacob Reinhold | |
""" | |
import os | |
import re |
This file contains 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 python | |
# -*- coding: utf-8 -*- | |
"""Normalize the intensity of a CT image | |
Author: Jacob Reinhold | |
""" | |
import sys | |
from argparse import ArgumentParser | |
from pathlib import Path | |
from typing import Tuple, Union |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
subject | flair | pd | t1 | out | |
---|---|---|---|---|---|
pred_subject_1 | /path/to/flair_1.nii.gz | /path/to/pd_1.nii.gz | /path/to/t1_1.nii.gz | /path/to/save/predicted_segmentation_1.nii.gz | |
pred_subject_2 | /path/to/flair_2.nii.gz | /path/to/pd_2.nii.gz | /path/to/t1_2.nii.gz | /path/to/save/predicted_segmentation_2.nii.gz |
This file contains 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
subject | flair | label | pd | t1 | |
---|---|---|---|---|---|
train_subject_1 | /path/to/flair_1.nii.gz | /path/to/ground_truth_segmentation_1.nii.gz | /path/to/pd_1.nii.gz | /path/to/t1_1.nii.gz | |
train_subject_2 | /path/to/flair_2.nii.gz | /path/to/ground_truth_segmentation_2.nii.gz | /path/to/pd_2.nii.gz | /path/to/t1_2.nii.gz |
This file contains 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
tiramisu-brulee exercise | |
================================================================================ | |
The goal of this exercise is to get up-and-running with the tiramisu-brulee | |
package found here: https://github.com/jcreinhold/tiramisu-brulee | |
Use the documentation if you get stuck: https://tiramisu-brulee.readthedocs.io | |
If you run into a bug, raise an issue here: | |
https://github.com/jcreinhold/tiramisu-brulee/issues |
This file contains 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 pytorch_lightning.utilities.parsing import AttributeDict as adict | |
def to_adict(d: dict) -> adict: | |
""" recursively convert a dictionary to an AttributeDict """ | |
for k, v in d.items(): | |
if isinstance(v, dict): | |
d[k] = to_adict(v) | |
return adict(d) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 | |
# | |
# use the following command to run this script: source ./create_env.sh | |
# | |
# ** `source` in the above command is necessary for this script to run correctly ** | |
# | |
# Created on: May 14, 2021 | |
# Author: Jacob Reinhold ([email protected]) | |
if [[ "$OSTYPE" != "linux-gnu" && "$OSTYPE" != "darwin"* ]]; then |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.