Skip to content

Evaluation of Segment Anything Model 2: The Role of SAM2 in the Underwater Environment

Notifications You must be signed in to change notification settings

LiamLian0727/UnderwaterSAM2Eval

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Evaluation of SAM2 in the Underwater Environment

This repository is the implementation of "Evaluation of Segment Anything Model 2: The Role of SAM2 in the Underwater Environment".

If you found this project useful, please give us a star ⭐️ or cite us in your paper, this is the greatest support and encouragement for us.

Abstract

With breakthroughs in large-scale modeling, the Segment Anything Model (SAM) and its extensions have been attempted for applications in various underwater visualization tasks in marine sciences, and have had a significant impact on the academic community. Recently, Meta has further developed the Segment Anything Model 2 (SAM2), which significantly improves running speed and segmentation accuracy compared to its predecessor.

This report aims to explore the potential of SAM2 in marine science by evaluating it on the underwater instance segmentation benchmark datasets UIIS and USIS10K. The experiments show that the performance of SAM2 is extremely dependent on the type of user-provided prompts. When using the ground truth bounding box as prompt, SAM2 performed excellently in the underwater instance segmentation domain. However, when running in automatic mode, SAM2's ability with point prompts to sense and segment underwater instances is significantly degraded.

It is hoped that this paper will inspire researchers to further explore the SAM model family in the underwater domain.

Installation

SAM 2

SAM 2 needs to be installed first before use. The code requires python>=3.10, as well as torch>=2.3.1 and torchvision>=0.18.1. Please follow the instructions here to install both PyTorch and TorchVision dependencies. You can install SAM 2 on a GPU machine using:

git clone https://github.com/facebookresearch/segment-anything-2.git

cd segment-anything-2; pip install -e .
SAM

SAM requires python>=3.8, as well as pytorch>=1.7 and torchvision>=0.8. Please follow the instructions here to install both PyTorch and TorchVision dependencies. Installing both PyTorch and TorchVision with CUDA support is strongly recommended.

git clone [email protected]:facebookresearch/segment-anything.git

cd segment-anything; pip install -e .
EfficientSAM
git clone [email protected]:yformer/EfficientSAM.git

cd EfficientSAM; pip install -e .
Install other dependencies
pip install matplotlib scipy pycocotools

Experimental Results

In this technical report, we use the underwater instance segmentation task as a case study to analyze the performance of SAM2 in underwater scenarios with the UIIS dataset (ICCV'23) and the USIS10K dataset (ICML'24). We observe the following two points:

  • When ground truth is used as the prompt for the SAM2, its performance improves significantly compared to SAM and EfficientSAM.

  • When using SAM2 to automatically generate instance masks, the performance of SAM2 showed significant degradation and is not comparable to state-of-the-art underwater instance segmentation algorithms.

We also present some visualization results for SAM2 to show the performance of SAM2 at different prompts. It can be seen that when dealing with underwater instances with visual ambiguity phenomena (e.g., rows 2 and 6), SAM2 tends to segment out the wrong masks. When processing large objects, SAM2 sometimes generates a large amount of noise at the edges (e.g., rows 3 and 4).

framework_img

Conclusion

In this work, we conduct a preliminary investigation of the performance for SAM2 in the field of underwater segmentation. Based on experiments on the UIIS dataset and the USIS10K dataset, we observe:

  • The performance of SAM2 is largely dependent on the type and quality of the input prompts, and when the type of prompts is constant, the difference in performance between different backbones of SAM2 is not significant.

  • When automated inference without user-specified prompt, the performance of SAM2 shows a significant degradation. Therefore, how to design a reliable object detection module as a prompt generator for SAM2 will be the focus of future research in this area.

In addition, due to the scarcity of underwater video segmentation datasets, this report doesn't evaluate the performance of SAM2 on the underwater video instance segmentation task. However, based on SAM2's excellent performance on underwater 2D instance segmentation, we speculate that SAM2 can be a powerful annotation tool for underwater video instance segmentation dataset and help the development of this field.

Citation

If you find our repo useful for your research, please cite us:

@article{
  lian2024evaluationsegmentmodel2,
  title     = {Evaluation of Segment Anything Model 2: The Role of SAM2 in the Underwater Environment}, 
  author    = {Shijie Lian and Hua Li},
  year      = {2024},
  journal   = {arXiv preprint arXiv:2408.02924},
  URL       = {https://arxiv.org/abs/2408.02924}, 
}

In addition, if you find the UIIS dataset and the USIS10K dataset helpful to your work, please cite them:

@InProceedings{
  lian2023waterMask,
  title     = {WaterMask: Instance Segmentation for Underwater Imagery},
  author    = {Shijie Lian and Hua Li and Runmin Cong and Suqi Li and Wei Zhang and Sam Kwong},
  booktitle = {Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV)},
  year      = {2023},
  pages     = {1305-1315}
}

@inproceedings{
  lian2024diving,
  title     = {Diving into Underwater: Segment Anything Model Guided Underwater Salient Instance Segmentation and A Large-scale Dataset},
  author    = {Shijie Lian and Ziyi Zhang and Hua Li and Wenjie Li and Laurence Tianruo Yang and Sam Kwong and Runmin Cong},
  booktitle = {Forty-first International Conference on Machine Learning},
  year      = {2024},
  URL       = {https://openreview.net/forum?id=snhurpZt63}
}

⭐ Stargazers

Stargazers repo roster for @LiamLian0727/UnderwaterSAM2Eval

About

Evaluation of Segment Anything Model 2: The Role of SAM2 in the Underwater Environment

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages