-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from DIAGNijmegen/m-gc-lobesegmentation-xie
MHub / GC - Minor cleanup gc_lunglobes
- Loading branch information
Showing
3 changed files
with
10 additions
and
14 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM mhubai/base:latest | ||
|
||
# Update authors label | ||
LABEL authors="s[email protected],[email protected],[email protected]" | ||
LABEL authors="sil[email protected],[email protected],[email protected]" | ||
|
||
# Install system dependencies for OpenCV | ||
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y | ||
|
@@ -19,8 +19,8 @@ RUN pip3 install --no-cache-dir --force-reinstall SimpleITK==1.2.4 | |
ARG MHUB_MODELS_REPO | ||
RUN buildutils/import_mhub_model.sh gc_lunglobes ${MHUB_MODELS_REPO} | ||
|
||
# Install Xie's pulmonary lobe segmentation algorithm and model weights | ||
RUN git clone https://github.com/DIAGNijmegen/bodyct-pulmonary-lobe-segmentation.git src && \ | ||
# Install Xie's pulmonary lobe segmentation algorithm and model weights (release gclobe165 v1.6.5) | ||
RUN git clone --depth 1 --branch v1.6.5 https://github.com/DIAGNijmegen/bodyct-pulmonary-lobe-segmentation.git src && \ | ||
sed -i 's/from models import CTSUNet/from src.models import CTSUNet/g' src/test.py | ||
|
||
# Default run script | ||
|
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