Skip to content

Commit

Permalink
[GCOLAB] Added DICOMLoader
Browse files Browse the repository at this point in the history
  • Loading branch information
YanSte committed Aug 29, 2023
1 parent 0b34ccb commit 06e6a86
Show file tree
Hide file tree
Showing 3 changed files with 432 additions and 5 deletions.
8 changes: 7 additions & 1 deletion src/skit/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
except ImportError:
IN_COLAB = False


# ==============================
# Library
# ==============================
Expand All @@ -20,3 +19,10 @@
IS_TENSORFLOW_IMPORTED = True
except ImportError:
IS_TENSORFLOW_IMPORTED = False

# Env with library tensorflow
try:
import pydicom
IS_PYDICOM_IMPORTED = True
except ImportError:
IS_PYDICOM_IMPORTED = False
Loading

0 comments on commit 06e6a86

Please sign in to comment.