Metadata-Version: 2.1
Name: SAMY
Version: 1.0.0
Summary: Combines YOLOv8 and SAM
Home-page: https://github.com/Jawher-Ben-Abdallah/YOLO-SAM
Author: Jawher Ben Abdallah - Rim Sleimi
Author-email: jawher.b.abdallah@gmail.com
License: Apache License 2.0
Keywords: YOLOv8,SAM,Object_Detection,Segmentation
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: matplotlib (>=3.2.2)
Requires-Dist: numpy (>=1.21.6)
Requires-Dist: opencv-python (>=4.6.0)
Requires-Dist: Pillow (>=7.1.2)
Requires-Dist: PyYAML (>=5.3.1)
Requires-Dist: requests (>=2.23.0)
Requires-Dist: scipy (>=1.4.1)
Requires-Dist: torch (>=1.7.0)
Requires-Dist: torchvision (>=0.8.1)
Requires-Dist: tqdm (>=4.64.0)
Requires-Dist: ultralytics
Provides-Extra: dev
Requires-Dist: twine (>=4.0.2) ; extra == 'dev'

# YOLO-SAM
A repository for Instance Segmentation using YOLO and SAM (Segment Anything Model).

## Installation
Install YOLOv8 and SAM dependencies:
```
pip install -r requirements.txt
```
Install YOLOv8:
```
pip install ultralytics
```

Install Segment Anything:
```
pip install git+https://github.com/facebookresearch/segment-anything.git
```

## Getting Started
To get started, click the links to download the YOLO and Segment Anything models:
- **YOLO Model: [Yolov8s.](https://github.com/ultralytics/assets/releases/download/v0.0.0/yolov8s.pt)**
- **Segment Anything Model: [ViT-H SAM model.](https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth)**


