Skip to content

Commit

Permalink
added sam prompt segmentation widget; fixed opencv version
Browse files Browse the repository at this point in the history
  • Loading branch information
mese79 committed Jan 14, 2024
1 parent 2a366b4 commit 6760c87
Show file tree
Hide file tree
Showing 5 changed files with 416 additions and 30 deletions.
2 changes: 1 addition & 1 deletion env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ dependencies:
- pip:
- numpy
- matplotlib
- opencv-python
- opencv-python==4.8.0.74
- timm
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ classifiers =
packages = find:
install_requires =
numpy
opencv-python
opencv-python==4.8.0.74
scikit-learn
scikit-image
matplotlib
napari
magicgui
qtpy
h5py
pytorch
torchvision
; pytorch
; torchvision
timm

python_requires = >=3.8
Expand Down
2 changes: 2 additions & 0 deletions src/napari_sam_labeling_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
from ._embedding_extractor_widget import EmbeddingExtractorWidget
from ._sam_predictor_widget import SAMPredictorWidget
from ._sam_rf_segmentation_widget import SAMRFSegmentationWidget
from ._sam_prompt_segmentation_widget import SAMPromptSegmentationWidget

__all__ = (
"EmbeddingExtractorWidget",
"SAMPredictorWidget",
"SAMRFSegmentationWidget",
"SAMPromptSegmentationWidget"
)
Loading

0 comments on commit 6760c87

Please sign in to comment.