Coverage for src/spectroflat/fitting/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2024-03-28 07:59 +0000

1""" 

2## Fitting 

3 

4Line detection and line fitting package provides classes to detect lines 

5in spectrographic images and to find the line center in a given row. 

6 

7Please refer to the description of the individual modules for more details. 

8""" 

9 

10from .line import Line 

11from .line_fit import LineFit 

12from .line_detector import LineDetector 

13from .line_locator import AutoLineLocator