-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
27 lines (21 loc) · 825 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""
A package to facilitate analysis of laser beam images.
Full documentation is available at <https://laserbeamsize.readthedocs.io>
Local help is available for the two modules that comprise the
laserbeamsize package. laserbeamsize.laserbeamsize has functions
for finding the size of an beam from as single image. This
information can be found using
help(laserbeamsize.laserbeamsize)
The other module has the functions that find the M² value and other
beam parameters from a sequence of images. This information can be
found using
help(laserbeamsize.m2)
"""
__version__ = '1.9.4'
__author__ = 'Scott Prahl'
__email__ = '[email protected]'
__copyright__ = 'Copyright 2017-22, Scott Prahl'
__license__ = 'MIT'
__url__ = 'https://github.com/scottprahl/laserbeamsize.git'
from .laserbeamsize import *
from .m2 import *