- Description: MediaStorageSOPClassUID Tag: (0x0002,0x0002) Level: ERROR
- Description: MediaStorageSOPInstanceUID Tag: (0x0002,0x0003) Level: ERROR
- Description: TransferSyntaxUID Tag: (0x0002,0x0010)
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 tensorflow/tensorflow:2.2.0-gpu-jupyter | |
RUN python -m pip install --upgrade pip | |
COPY requirements.txt . | |
RUN pip install -r requirements.txt |
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
**/__pycache__/* |
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 nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04 | |
# install python 3.7 and pip | |
RUN apt-get update \ | |
&& apt-get install -y --no-install-recommends \ | |
build-essential \ | |
software-properties-common \ | |
pkg-config \ | |
rsync \ |
** PLEASE NOTE ***
there are many other solutions for computing SUV, see below link for more info.
https://qibawiki.rsna.org/index.php/Standardized_Uptake_Value_(SUV)
This gist contains code to perform the below with python (3.7).
+ download data from TCIA via tcia-rest api. (download.py, tciaclient.py)
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 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
# sample code to augment image,mask and keypoints with albumentations | |
import numpy as np | |
import matplotlib.pyplot as plt | |
%matplotlib inline | |
import albumentations as A | |
image = np.random.rand(256,256) | |
image[64:128,64:128]+=0.5 | |
mask = np.zeros((256,256)) |
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 ubuntu:18.04 | |
RUN apt-get update && apt-get install -yq \ | |
autotools-dev \ | |
build-essential \ | |
ca-certificates \ | |
vim curl wget \ | |
cmake g++ | |
WORKDIR /opt/sources |