Skip to content

Commit

Permalink
some changes in sealwatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Benes committed Jun 22, 2024
1 parent a69a6d3 commit 2dbf0a0
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 0 deletions.
File renamed without changes.
4 changes: 4 additions & 0 deletions sealwatch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
from . import ws

# features
from . import features

# classifier
from . import ensemble_classifier

#
from . import utils
Expand Down
4 changes: 4 additions & 0 deletions sealwatch/ensemble_classifier/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

from .ensemble_classifier import EnsembleClassifier
from .fld_ensemble_trainer import FldEnsembleTrainer
from . import helpers
File renamed without changes.
6 changes: 6 additions & 0 deletions sealwatch/features/dctr/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
"""
Authors: Benedikt Lorch
Affiliation: University of Innsbruck
"""

from .dctr import extract_dctr_features_from_file, extract_dctr_features_from_img
6 changes: 6 additions & 0 deletions sealwatch/features/gfr/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
"""
Authors: Benedikt Lorch
Affiliation: University of Innsbruck
"""

from .gfr import extract_gfr_features_from_file, extract_gfr_features_from_img
6 changes: 6 additions & 0 deletions sealwatch/features/jrm/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
"""
Authors: Benedikt Lorch
Affiliation: University of Innsbruck
"""

from .jrm import extract_jrm_features_from_file, extract_jrm_features_from_img, extract_cc_jrm_features_from_file
6 changes: 6 additions & 0 deletions sealwatch/features/pharm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
"""
Authors: Benedikt Lorch
Affiliation: University of Innsbruck
"""

from .pharm_original import extract_pharm_original_features_from_file, extract_pharm_original_features_from_img
from .pharm_revisited import extract_pharm_revisited_features_from_file, extract_pharm_revisited_features_from_img

0 comments on commit 2dbf0a0

Please sign in to comment.