Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make sam2 optional #393

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.config.py }}
- name: Set CUDA_HOME
run: echo "CUDA_HOME=/usr/local/cuda" >> $GITHUB_ENV
- name: Install GDAL
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ scikit-image
scikit-learn
segment-anything-hq
segment-anything-py
setuptools>=62.3.0,<75.9
timm
tqdm
xarray
Expand Down
1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
groundingdino-py
rio-cogeo
sam2
segment-anything-fast
10 changes: 7 additions & 3 deletions samgeo/samgeo2.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@
from PIL.Image import Image
from tqdm import tqdm
from typing import Any, Dict, List, Optional, Tuple, Union
from sam2.automatic_mask_generator import SAM2AutomaticMaskGenerator
from sam2.sam2_image_predictor import SAM2ImagePredictor
from sam2.sam2_video_predictor import SAM2VideoPredictor

try:
from sam2.automatic_mask_generator import SAM2AutomaticMaskGenerator
from sam2.sam2_image_predictor import SAM2ImagePredictor
from sam2.sam2_video_predictor import SAM2VideoPredictor
except ImportError:
print("Please install sam2 using `pip install sam2`.")

from . import common

Expand Down
Loading