dbdicom 0.2.1__py3-none-any.whl → 0.2.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dbdicom might be problematic. Click here for more details.
- dbdicom/__init__.py +4 -3
- dbdicom/create.py +34 -97
- dbdicom/dro.py +174 -0
- dbdicom/ds/dataset.py +29 -3
- dbdicom/ds/types/mr_image.py +18 -7
- dbdicom/extensions/__init__.py +10 -0
- dbdicom/{wrappers → extensions}/dipy.py +191 -205
- dbdicom/extensions/elastix.py +503 -0
- dbdicom/extensions/matplotlib.py +107 -0
- dbdicom/extensions/numpy.py +271 -0
- dbdicom/{wrappers → extensions}/scipy.py +130 -31
- dbdicom/{wrappers → extensions}/skimage.py +1 -1
- dbdicom/extensions/sklearn.py +243 -0
- dbdicom/extensions/vreg.py +1390 -0
- dbdicom/external/dcm4che/bin/emf2sf +57 -57
- dbdicom/manager.py +70 -36
- dbdicom/pipelines.py +66 -0
- dbdicom/record.py +266 -43
- dbdicom/types/instance.py +17 -3
- dbdicom/types/series.py +1900 -404
- dbdicom/utils/image.py +152 -21
- dbdicom/utils/vreg.py +327 -135
- dbdicom-0.2.3.dist-info/METADATA +88 -0
- {dbdicom-0.2.1.dist-info → dbdicom-0.2.3.dist-info}/RECORD +27 -41
- {dbdicom-0.2.1.dist-info → dbdicom-0.2.3.dist-info}/WHEEL +1 -1
- dbdicom/external/__pycache__/__init__.cpython-310.pyc +0 -0
- dbdicom/external/__pycache__/__init__.cpython-37.pyc +0 -0
- dbdicom/external/dcm4che/__pycache__/__init__.cpython-310.pyc +0 -0
- dbdicom/external/dcm4che/__pycache__/__init__.cpython-37.pyc +0 -0
- dbdicom/external/dcm4che/bin/__pycache__/__init__.cpython-310.pyc +0 -0
- dbdicom/external/dcm4che/bin/__pycache__/__init__.cpython-37.pyc +0 -0
- dbdicom/external/dcm4che/lib/linux-x86/libclib_jiio.so +0 -0
- dbdicom/external/dcm4che/lib/linux-x86-64/libclib_jiio.so +0 -0
- dbdicom/external/dcm4che/lib/linux-x86-64/libopencv_java.so +0 -0
- dbdicom/external/dcm4che/lib/solaris-sparc/libclib_jiio.so +0 -0
- dbdicom/external/dcm4che/lib/solaris-sparc/libclib_jiio_vis.so +0 -0
- dbdicom/external/dcm4che/lib/solaris-sparc/libclib_jiio_vis2.so +0 -0
- dbdicom/external/dcm4che/lib/solaris-sparcv9/libclib_jiio.so +0 -0
- dbdicom/external/dcm4che/lib/solaris-sparcv9/libclib_jiio_vis.so +0 -0
- dbdicom/external/dcm4che/lib/solaris-sparcv9/libclib_jiio_vis2.so +0 -0
- dbdicom/external/dcm4che/lib/solaris-x86/libclib_jiio.so +0 -0
- dbdicom/external/dcm4che/lib/solaris-x86-64/libclib_jiio.so +0 -0
- dbdicom/wrappers/__init__.py +0 -7
- dbdicom/wrappers/elastix.py +0 -855
- dbdicom/wrappers/numpy.py +0 -119
- dbdicom/wrappers/sklearn.py +0 -151
- dbdicom/wrappers/vreg.py +0 -273
- dbdicom-0.2.1.dist-info/METADATA +0 -276
- {dbdicom-0.2.1.dist-info → dbdicom-0.2.3.dist-info}/LICENSE +0 -0
- {dbdicom-0.2.1.dist-info → dbdicom-0.2.3.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: dbdicom
|
|
3
|
+
Version: 0.2.3
|
|
4
|
+
Summary: A pythonic interface for reading and writing DICOM databases
|
|
5
|
+
Author-email: Steven Sourbron <s.sourbron@sheffield.ac.uk>, Ebony Gunwhy <e.gunwhy@sheffield.ac.uk>
|
|
6
|
+
Project-URL: Homepage, https://qib-sheffield.github.io/dbdicom/
|
|
7
|
+
Keywords: python,medical imaging,DICOM
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Requires-Python: >=3.6
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Requires-Dist: matplotlib
|
|
21
|
+
Requires-Dist: nibabel
|
|
22
|
+
Requires-Dist: numpy<=1.26.4
|
|
23
|
+
Requires-Dist: pandas
|
|
24
|
+
Requires-Dist: pydicom
|
|
25
|
+
Requires-Dist: python-gdcm
|
|
26
|
+
Requires-Dist: pylibjpeg-libjpeg
|
|
27
|
+
Requires-Dist: importlib-resources
|
|
28
|
+
Requires-Dist: scipy
|
|
29
|
+
Requires-Dist: imageio
|
|
30
|
+
Provides-Extra: docs
|
|
31
|
+
Requires-Dist: sphinx; extra == "docs"
|
|
32
|
+
Requires-Dist: pydata-sphinx-theme; extra == "docs"
|
|
33
|
+
Requires-Dist: myst-parser; extra == "docs"
|
|
34
|
+
Requires-Dist: sphinx-copybutton; extra == "docs"
|
|
35
|
+
Requires-Dist: sphinx-design; extra == "docs"
|
|
36
|
+
Requires-Dist: sphinx-remove-toctrees; extra == "docs"
|
|
37
|
+
Requires-Dist: autodocsumm; extra == "docs"
|
|
38
|
+
Requires-Dist: docutils; extra == "docs"
|
|
39
|
+
Requires-Dist: sphinxcontrib-applehelp; extra == "docs"
|
|
40
|
+
Requires-Dist: sphinxcontrib-devhelp; extra == "docs"
|
|
41
|
+
Requires-Dist: sphinxcontrib-htmlhelp; extra == "docs"
|
|
42
|
+
Requires-Dist: sphinxcontrib-jsmath; extra == "docs"
|
|
43
|
+
Requires-Dist: sphinxcontrib-qthelp; extra == "docs"
|
|
44
|
+
Requires-Dist: sphinxcontrib-serializinghtml; extra == "docs"
|
|
45
|
+
Requires-Dist: sphinx-gallery; extra == "docs"
|
|
46
|
+
Provides-Extra: extensions
|
|
47
|
+
Requires-Dist: scipy; extra == "extensions"
|
|
48
|
+
Requires-Dist: scikit-image<=0.19.0; extra == "extensions"
|
|
49
|
+
Requires-Dist: SimpleITK-SimpleElastix; extra == "extensions"
|
|
50
|
+
Requires-Dist: itk-elastix; extra == "extensions"
|
|
51
|
+
Requires-Dist: dipy; extra == "extensions"
|
|
52
|
+
Requires-Dist: scikit-learn; extra == "extensions"
|
|
53
|
+
|
|
54
|
+
`dbdicom` is a Pythonic interface for reading and writing DICOM databases.
|
|
55
|
+
|
|
56
|
+
# Installation
|
|
57
|
+
|
|
58
|
+
`pip install dbdicom`
|
|
59
|
+
|
|
60
|
+
# Documentation
|
|
61
|
+
|
|
62
|
+
For more detail, see the current [dbdicom documentation](https://qib-sheffield.github.io/dbdicom/).
|
|
63
|
+
|
|
64
|
+
# Ambition
|
|
65
|
+
|
|
66
|
+
The DICOM format is the universally recognised standard for medical imaging,
|
|
67
|
+
but working with DICOM data remains a challenging task for data scientists.
|
|
68
|
+
|
|
69
|
+
``dbdicom`` aims to provide an intuitive programming interface for reading and
|
|
70
|
+
writing DICOM databases - replacing unfamiliar DICOM-native concepts by
|
|
71
|
+
pythonic language and syntax.
|
|
72
|
+
|
|
73
|
+
# Disclaimer
|
|
74
|
+
|
|
75
|
+
`dbdicom` is developed in public and currently trialled in ongoing
|
|
76
|
+
multi-centre clinical studies
|
|
77
|
+
[iBEAt](https://bmcnephrol.biomedcentral.com/articles/10.1186/s12882-020-01901-x>)
|
|
78
|
+
and [AFiRM](https://www.uhdb.nhs.uk/afirm-study/). However, ``dbdicom`` is
|
|
79
|
+
work in progress and **not yet sufficiently stable for wider use**. Current
|
|
80
|
+
dissemination activities, such as on the
|
|
81
|
+
[ISMRM (Toronto 2023)](https://www.ismrm.org/23m/), are limited in scope and
|
|
82
|
+
intended to get early feedback from the community.
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
@@ -1,32 +1,37 @@
|
|
|
1
|
-
dbdicom/__init__.py,sha256=
|
|
2
|
-
dbdicom/create.py,sha256=
|
|
3
|
-
dbdicom/
|
|
1
|
+
dbdicom/__init__.py,sha256=rXC7OyQufyuAHqkUxxnw-LaQSw_Z1pZu86QNvj5wtrI,503
|
|
2
|
+
dbdicom/create.py,sha256=v_hLU-5OtJn38FSUDw7d6B0bCIg1LQB49449aG6Jrhs,16518
|
|
3
|
+
dbdicom/dro.py,sha256=onVacXzCqFj6MdKOAAIB8jE-AVcrdbrJHE60sihAuzY,8138
|
|
4
|
+
dbdicom/manager.py,sha256=dn09ieznzTThhvcSBsLLwW5kAS6iWRTau-fhSlXyWhQ,83685
|
|
4
5
|
dbdicom/message.py,sha256=kHcb-WuK_SzIqX76X55YIqSbTn3OdFC052qDkaKfIC8,3581
|
|
5
|
-
dbdicom/
|
|
6
|
+
dbdicom/pipelines.py,sha256=keBsBEjEipfu9reh3ExhHT2sgRksbL5MuRDHF4OywEI,2280
|
|
7
|
+
dbdicom/record.py,sha256=p5WH1f5Bearn5ZHdCT9h11BUfo5O9GuSz1Dk8gH4BLM,66387
|
|
6
8
|
dbdicom/ds/__init__.py,sha256=gX_ui37gPc_A9h0ZsBYj1-Uh7QdlmtBGrbcbXuOM8Bk,459
|
|
7
9
|
dbdicom/ds/create.py,sha256=_np1bXXH6lfls6JSrPPbgy8X8q6QOj5s83tYUIAaEUk,2132
|
|
8
|
-
dbdicom/ds/dataset.py,sha256=
|
|
10
|
+
dbdicom/ds/dataset.py,sha256=JL2xPQr-xI-cbirwzlG6ROH3cTj9Ruyd8L3roYfiXNA,29257
|
|
9
11
|
dbdicom/ds/dictionaries.py,sha256=g_9EB5jXBmzxp0GFhYC6lQ-tKwxje03ukV5EAH3E_l0,23717
|
|
10
12
|
dbdicom/ds/types/ct_image.py,sha256=2TvEl267TnIkkuJQzPLh9STeSJxKt_ZQi4SEBYmQuiI,3189
|
|
11
13
|
dbdicom/ds/types/enhanced_mr_image.py,sha256=lTvLhMpCiDauAov_IW5epCFKKRhgLfy2d0oC2uab0wc,31336
|
|
12
|
-
dbdicom/ds/types/mr_image.py,sha256=
|
|
14
|
+
dbdicom/ds/types/mr_image.py,sha256=Eaz_jma1VQ2sh0RBWUnQX-8AgPst859e9LFhvv9Rnzw,9769
|
|
13
15
|
dbdicom/ds/types/parametric_map.py,sha256=hc5ms5SarLu3ocitK4aM4dW38rbUxDWVRExFeFmZsVY,11699
|
|
14
16
|
dbdicom/ds/types/ultrasound_multiframe_image.py,sha256=9x2G4pRFYXSoxnaAMLF8okusSkWsSzCdGr5jltxD0Wc,3213
|
|
15
17
|
dbdicom/ds/types/xray_angiographic_image.py,sha256=KhDDVVsZ3himE1P6qFdi401rYcbWCyGZx7inqg-v8oc,3676
|
|
18
|
+
dbdicom/extensions/__init__.py,sha256=YOzQYid1QHRQYSYBLYTmeRK6_LrucV6xPaumoiO_K8Q,126
|
|
19
|
+
dbdicom/extensions/dipy.py,sha256=CrSjU14JwNpMP7AIH-CR3wkoQB19MYbS4efOEVczurQ,16806
|
|
20
|
+
dbdicom/extensions/elastix.py,sha256=0gNgiC0RAEjLBhovgRtaLy31xxUy6rJWoapm_3tMCQ8,22522
|
|
21
|
+
dbdicom/extensions/matplotlib.py,sha256=k9KK-mZW8TpW37PgoFre3yb4ffRCRrPVeQKEGZnQoXw,4218
|
|
22
|
+
dbdicom/extensions/numpy.py,sha256=13PPKj-GCAstSb7uQ8_XAZ2borYkDVKhqcAs7KVA6pc,10542
|
|
23
|
+
dbdicom/extensions/scipy.py,sha256=xQ3H3puoE9kF1qG5Pvl6gaQD4TdL6-f3V8Cz7z1_L0A,52884
|
|
24
|
+
dbdicom/extensions/skimage.py,sha256=hP2get4UTpu0ZSlbAvQmwaKRvGupHLn39L0BctgzZ-0,38563
|
|
25
|
+
dbdicom/extensions/sklearn.py,sha256=KxxAlzh8ZI7YBkLS529k9VaAObCCVZT8exvEQThcYCY,9351
|
|
26
|
+
dbdicom/extensions/vreg.py,sha256=6U9l9p18Cfs67pAn3ROhalcPVioNVdB0Hi9Co-eAegU,67541
|
|
16
27
|
dbdicom/external/__init__.py,sha256=XNQqfspyf6vFGedXlRKZsUB8k8E-0W19Uamwn8Aioxo,316
|
|
17
|
-
dbdicom/external/__pycache__/__init__.cpython-310.pyc,sha256=LKtgv6wDok4_xp5IURsNH7S3SQgztzQnqzLCLTKcuf4,512
|
|
18
|
-
dbdicom/external/__pycache__/__init__.cpython-37.pyc,sha256=SjfoDOtOd25W3k1Y8zaeBSY2abdP9dq4O55wJb2E9F8,506
|
|
19
28
|
dbdicom/external/dcm4che/README.md,sha256=0aAGRs36W3_0s5LzWHRGf_tqariS_JP4iJggaxnD4Xw,8987
|
|
20
29
|
dbdicom/external/dcm4che/__init__.py,sha256=YwpeMCLrxffGOkchsGjgAuB6ia3VX_tx9Y7ru9EWtoY,35
|
|
21
|
-
dbdicom/external/dcm4che/__pycache__/__init__.cpython-310.pyc,sha256=OjXp4gwnAgd533yoQ3JzLFutR2XrWe1esPJUbyT4bP0,236
|
|
22
|
-
dbdicom/external/dcm4che/__pycache__/__init__.cpython-37.pyc,sha256=qxy0fJnxAEcx5vq3DGFoIlCYVpuPWfPdFMaKXtIzUdI,230
|
|
23
30
|
dbdicom/external/dcm4che/bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
31
|
dbdicom/external/dcm4che/bin/deidentify,sha256=64MNIEpp-CWzFSb6TV0KtyCBvD7XyEsovRjBeyxDqSc,1698
|
|
25
32
|
dbdicom/external/dcm4che/bin/deidentify.bat,sha256=kVXUkcy1C4Y3KjC2NJwmmR0pufSJWmaof_LR5CTAxMg,1455
|
|
26
|
-
dbdicom/external/dcm4che/bin/emf2sf,sha256=
|
|
33
|
+
dbdicom/external/dcm4che/bin/emf2sf,sha256=svCzkZ-QhdVTV0NNHOpBiwNBMODVWZHJIFA7cWaN2bM,1622
|
|
27
34
|
dbdicom/external/dcm4che/bin/emf2sf.bat,sha256=Vh0ry9KNJX_WXcyCrLSxbJ_6Crot9rjmwi__u2GZqLY,1375
|
|
28
|
-
dbdicom/external/dcm4che/bin/__pycache__/__init__.cpython-310.pyc,sha256=_jhZPzvLDVI9KAjeAn8oIYVIIXRgBxIMB_qJT-LIk0k,191
|
|
29
|
-
dbdicom/external/dcm4che/bin/__pycache__/__init__.cpython-37.pyc,sha256=34NVXTsQEUo91tRZKWuG49EJiYpv5lxlORumlJSXJ8Q,185
|
|
30
35
|
dbdicom/external/dcm4che/etc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
36
|
dbdicom/external/dcm4che/etc/emf2sf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
37
|
dbdicom/external/dcm4che/etc/emf2sf/log4j.properties,sha256=3hHcBFt2oNRjvHtix5bfuEsnKfdv5IYOkbsyoY9g7cM,223
|
|
@@ -39,43 +44,24 @@ dbdicom/external/dcm4che/lib/dcm4che-tool-emf2sf-5.23.1.jar,sha256=pkpJRD00HQ4sE
|
|
|
39
44
|
dbdicom/external/dcm4che/lib/log4j-1.2.17.jar,sha256=HTFpZEVpdyBScJF1Q2kIKmZRvUl4G2AF3rlOVnU0Bvk,489884
|
|
40
45
|
dbdicom/external/dcm4che/lib/slf4j-api-1.7.30.jar,sha256=zboHlk0btAoHYUhcax6ML4_Z6x0ZxTkorA1_lRAQXFc,41472
|
|
41
46
|
dbdicom/external/dcm4che/lib/slf4j-log4j12-1.7.30.jar,sha256=TUHgHEDK-KbHSt0rBzBV2KTOHDDlgVQXexPxLXirvns,12211
|
|
42
|
-
dbdicom/external/dcm4che/lib/linux-x86/libclib_jiio.so,sha256=NaRXHsqHTT_qv3epFw0AY5gx3xmjllszGz5cyw7FmzM,1244729
|
|
43
|
-
dbdicom/external/dcm4che/lib/linux-x86-64/libclib_jiio.so,sha256=qzeCyA8jHAvJeihlUNzv9uJn-5ZGBFdkbknjdXB67dU,1368348
|
|
44
|
-
dbdicom/external/dcm4che/lib/linux-x86-64/libopencv_java.so,sha256=miN3S6aaRDOHEYYyjUHz_4N4E0StenKoKXOdEF7fFXk,19261440
|
|
45
47
|
dbdicom/external/dcm4che/lib/macosx-x86-64/libopencv_java.jnilib,sha256=A2uOWIUQX3KcG850ElpW4lVtn2uyPpJHZq9cPlpJjMY,15137664
|
|
46
|
-
dbdicom/external/dcm4che/lib/solaris-sparc/libclib_jiio.so,sha256=ZaWOodGeNlfKsYBluphJEXgcnVyln4ja7Zie3qZZlAU,1596964
|
|
47
|
-
dbdicom/external/dcm4che/lib/solaris-sparc/libclib_jiio_vis.so,sha256=_OvfcRyZpVT5cTWzIr4YE2XDUcLd2DNCPR3zQv9F2r0,2867604
|
|
48
|
-
dbdicom/external/dcm4che/lib/solaris-sparc/libclib_jiio_vis2.so,sha256=DiCFvkUOcCHUimB5JnQ25F69heRu1-DrZGcOocAwGpc,2778740
|
|
49
|
-
dbdicom/external/dcm4che/lib/solaris-sparcv9/libclib_jiio.so,sha256=b0YFloOsXiJM-JxPdskI9AGldY3-xCVgKJJ6gvLHtJI,2109160
|
|
50
|
-
dbdicom/external/dcm4che/lib/solaris-sparcv9/libclib_jiio_vis.so,sha256=Bb0Sa67dIJfBOkGY-InrTrqraark4yhWevJFfcjnTP4,2891328
|
|
51
|
-
dbdicom/external/dcm4che/lib/solaris-sparcv9/libclib_jiio_vis2.so,sha256=gnPUsRtHvEXdpCgKRc7yDG5Xv0RZ1APLGMopuWy02SU,2838312
|
|
52
|
-
dbdicom/external/dcm4che/lib/solaris-x86/libclib_jiio.so,sha256=pTeKaa3cjtts-E2nCs-xhJPRdQoSI-OjZSTGjlLWRGU,2162548
|
|
53
|
-
dbdicom/external/dcm4che/lib/solaris-x86-64/libclib_jiio.so,sha256=xTpV49v4Go2U_fw_hJ8OACn3DOLUW5dK2fcNgLJkzAA,1633976
|
|
54
48
|
dbdicom/external/dcm4che/lib/windows-x86/clib_jiio.dll,sha256=C2dAjNyefOm3POrUxorEF6T-FTztpo0nfGAsUrDyQyg,720896
|
|
55
49
|
dbdicom/external/dcm4che/lib/windows-x86/clib_jiio_sse2.dll,sha256=uD9GLN_hPf9mM9APzlp9j6770awKP6xnlaooMrxHpkg,1089536
|
|
56
50
|
dbdicom/external/dcm4che/lib/windows-x86/clib_jiio_util.dll,sha256=wi4yyrI1gTRo_bBpj0E097BQBiHZd8IqVifKr6kfkRE,40960
|
|
57
51
|
dbdicom/external/dcm4che/lib/windows-x86/opencv_java.dll,sha256=QanyzLy0Cd79-aOVPwOcXwikUYeutne0Au-Um91_B4M,8505856
|
|
58
52
|
dbdicom/external/dcm4che/lib/windows-x86-64/opencv_java.dll,sha256=TmjW2SbG4MR3GQ95T8xCVVDLgsdKukgaHBPUvWkfXp8,11039232
|
|
59
53
|
dbdicom/types/database.py,sha256=Ur-VE6Uixw4nV6QUY8fnMSUgDvvk54KhiUvbmS3bGuE,3066
|
|
60
|
-
dbdicom/types/instance.py,sha256=
|
|
54
|
+
dbdicom/types/instance.py,sha256=DsQOiHmX9W2cffvJUqE25gBAIlMGSm8Z33F-HKk3fcI,6881
|
|
61
55
|
dbdicom/types/patient.py,sha256=YtBTwJDo8EiquJ2vLcyBW7Pzz7EISKhzvxq2506QSNo,1312
|
|
62
|
-
dbdicom/types/series.py,sha256=
|
|
56
|
+
dbdicom/types/series.py,sha256=OlDHfJs2NX5kpioNvbQv2QVCTITyWr_1CTNyipAe8Zs,100936
|
|
63
57
|
dbdicom/types/study.py,sha256=iX6gjA905DBvmTEwxSuppp_E7XXkTHvN3ezAnu362Es,2031
|
|
64
58
|
dbdicom/utils/dcm4che.py,sha256=Vxq8NYWWK3BuqJkzhBQ89oMqzJlnxqTxgsgTo_Frznc,2317
|
|
65
59
|
dbdicom/utils/files.py,sha256=HkAr03EmpcLkfcr6cS13_g-vqbE1acRYmTJP3e5zNas,2844
|
|
66
|
-
dbdicom/utils/image.py,sha256=
|
|
60
|
+
dbdicom/utils/image.py,sha256=qDEAILBuEToFQpbfAkqVNw3xX-rUX6gOVHUDqNbrSHM,24159
|
|
67
61
|
dbdicom/utils/variables.py,sha256=vUh5cDnmCft5hoXDYXUvfkg5Cy5WlgMAogU38Y_BKRo,5753
|
|
68
|
-
dbdicom/utils/vreg.py,sha256=
|
|
69
|
-
dbdicom/
|
|
70
|
-
dbdicom/
|
|
71
|
-
dbdicom/
|
|
72
|
-
dbdicom/
|
|
73
|
-
dbdicom/
|
|
74
|
-
dbdicom/wrappers/skimage.py,sha256=dgv-Cs6C3RiY60VuaUVHnMPFVIPrSB5acyi5v_g2iTc,38561
|
|
75
|
-
dbdicom/wrappers/sklearn.py,sha256=o1rs6iSaWd0rVdAZsHGvsRtKzmjLd5bLYu3JThAK2-A,5219
|
|
76
|
-
dbdicom/wrappers/vreg.py,sha256=CAhyGUN7mSTzeZXZ58_6TyaQM1LnPTJ8ahFjbyafy2w,11603
|
|
77
|
-
dbdicom-0.2.1.dist-info/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
78
|
-
dbdicom-0.2.1.dist-info/METADATA,sha256=CMsNBpM5RQlJVyAJdx2XcglcQ7tCJGNBR7bxeeqk67U,16381
|
|
79
|
-
dbdicom-0.2.1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
80
|
-
dbdicom-0.2.1.dist-info/top_level.txt,sha256=nJWxXg4YjD6QblfmhrzTMXcr8FSKNc0Yk-CAIDUsYkQ,8
|
|
81
|
-
dbdicom-0.2.1.dist-info/RECORD,,
|
|
62
|
+
dbdicom/utils/vreg.py,sha256=KPnc930-K0Uz7M9YJ2jDhwqnpjkaPfHYENsDcnKVqIo,112730
|
|
63
|
+
dbdicom-0.2.3.dist-info/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
64
|
+
dbdicom-0.2.3.dist-info/METADATA,sha256=Q1Bx8vLj-c8cGjAkh77rLNUgK8LRb-I2z3ZSB23DAMw,3400
|
|
65
|
+
dbdicom-0.2.3.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
66
|
+
dbdicom-0.2.3.dist-info/top_level.txt,sha256=nJWxXg4YjD6QblfmhrzTMXcr8FSKNc0Yk-CAIDUsYkQ,8
|
|
67
|
+
dbdicom-0.2.3.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|