Coverage for crip\__init__.py: 100%
16 statements
« prev ^ index » next coverage.py v7.5.2, created at 2024-07-16 01:15 +0800
« prev ^ index » next coverage.py v7.5.2, created at 2024-07-16 01:15 +0800
1__title__ = 'crip'
2__author__ = 'z0gSh1u'
3__license__ = 'MIT License'
4__doc__ = '''
5CT Recon in Python: An all-in-one tool for Data IO, Pre/Post-process, Physics, Dual Energy, Low Dose and everything.
6https://github.com/SEU-CT-Recon/crip
7'''
9__all__ = [
10 'spec', 'io', 'lowdose', 'physics', 'postprocess', 'preprocess', 'shared', 'utils', 'mangoct', 'plot', 'metric'
11]
13from . import spec
14from . import io
15from . import lowdose
16from . import physics
17from . import postprocess
18from . import preprocess
19from . import shared
20from . import utils
21from . import mangoct
22from . import plot
23from . import metric