Coverage for colorimetry/datasets/__init__.py: 0%

8 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-11-16 22:49 +1300

1from . import illuminants, light_sources 

2from .cmfs import ( 

3 MSDS_CMFS, 

4 MSDS_CMFS_LMS, 

5 MSDS_CMFS_RGB, 

6 MSDS_CMFS_STANDARD_OBSERVER, 

7) 

8from .illuminants import * # noqa: F403 

9from .lefs import SDS_LEFS, SDS_LEFS_PHOTOPIC, SDS_LEFS_SCOTOPIC 

10from .light_sources import * # noqa: F403 

11 

12__all__ = [ 

13 "illuminants", 

14 "light_sources", 

15] 

16__all__ += [ 

17 "MSDS_CMFS", 

18 "MSDS_CMFS_LMS", 

19 "MSDS_CMFS_RGB", 

20 "MSDS_CMFS_STANDARD_OBSERVER", 

21] 

22__all__ += [ 

23 "SDS_LEFS", 

24 "SDS_LEFS_PHOTOPIC", 

25 "SDS_LEFS_SCOTOPIC", 

26]