Skip to content

Commit

Permalink
Add warnings on use of 3D filaments in prep for initial merge to master
Browse files Browse the repository at this point in the history
  • Loading branch information
e-koch committed Aug 26, 2024
1 parent 3837feb commit d17287c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion fil_finder/filfinderPPP.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ class FilFinderPPP(BaseInfoMixin, Skeleton3D):
"""

def __init__(self, image, wcs=None, mask=None, distance=None, save_name='FilFinder3D_output'):
def __init__(self, image, wcs=None, mask=None, distance=None, save_name='FilFinderPPP_output'):

# Add warning that this is under development
warnings.warn("This algorithm is under development. Not all features are implemented"
" or tested. Use with caution.")

self._has_skan()

Expand Down
6 changes: 5 additions & 1 deletion fil_finder/filfinderPPV.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ class FilFinderPPV(Skeleton3D):
"""

def __init__(self, image, mask=None, save_name='FilFinder3D_output'):
def __init__(self, image, mask=None, save_name='FilFinderPPV_output'):

# Add warning that this is under development
warnings.warn("This algorithm is under development. Not all features are implemented"
" or tested. Use with caution.")

self._has_skan()

Expand Down

0 comments on commit d17287c

Please sign in to comment.