Skip to content

Instantly share code, notes, and snippets.

View jcreinhold's full-sized avatar

Jacob Reinhold jcreinhold

View GitHub Profile
@jcreinhold
jcreinhold / normalize-percentile.py
Created November 23, 2021 18:01
divide the intensity of a set of medical images by the percentile of the dataset
#!/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
@jcreinhold
jcreinhold / normalize_ct.py
Last active December 8, 2021 18:00
Normalize CT images for a given tissue range
#!/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
@jcreinhold
jcreinhold / filter_with_fft.ipynb
Last active September 10, 2021 17:05
Filter in frequency w/ zero padding
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jcreinhold
jcreinhold / example_tiramisu_brulee_predict.csv
Last active July 22, 2021 19:53
Example CSV for lesion-predict CLI in tiramisu-brulee
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
@jcreinhold
jcreinhold / example_tiramisu_brulee_train.csv
Last active July 22, 2021 19:54
Example CSV for lesion-train CLI in tiramisu-brulee
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
@jcreinhold
jcreinhold / tiramisu_brulee_exercise.txt
Last active June 5, 2021 14:18
An exercise in getting started with the tiramisu-brulee CLIs
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
@jcreinhold
jcreinhold / to_adict.py
Created May 16, 2021 23:17
convert a dictionary to an AttributeDict
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)
@jcreinhold
jcreinhold / medical_image_jupyter_tutorial.ipynb
Last active May 29, 2021 19:52
Working with medical images in Jupyter tutorial
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jcreinhold
jcreinhold / create_env.sh
Last active May 16, 2021 19:58
Create a conda environment for working with brain images in Jupyter
#!/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
@jcreinhold
jcreinhold / noninvertibility.ipynb
Created April 21, 2021 22:29
Convolution can prevent invertibility
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.