horffmanwang 3505c2c4c4
Update requirements.txt
numpy==1.21.4 not compatible with mahotas==1.4.13
problem solved when updated numpy to numpy-1.24.3
2023-04-25 11:45:17 +08:00
2023-04-20 00:00:19 +08:00
2023-04-20 00:00:19 +08:00
2023-04-24 21:45:38 +08:00
2023-04-20 00:00:19 +08:00
2023-04-24 21:45:38 +08:00
2023-04-24 21:45:38 +08:00
2023-04-24 21:45:38 +08:00
2023-04-20 00:00:19 +08:00
2023-04-20 00:00:19 +08:00
2023-04-24 21:45:38 +08:00
2023-04-20 00:00:19 +08:00
2023-04-24 21:45:38 +08:00
2023-04-24 21:45:38 +08:00
2023-04-20 00:00:19 +08:00
2023-04-20 00:00:19 +08:00
2023-04-20 00:57:39 +08:00
2023-04-24 21:45:38 +08:00
2023-04-25 11:45:17 +08:00
2023-04-24 21:45:38 +08:00

ISAT with segment anything

ISAT 图像分割标注工具(集成segment anything)

集成segment anything,实现图片分割快速标注。

项目持续更新中,更新日志,欢迎大家提出建议

演示视频:https://www.bilibili.com/video/BV1Lk4y1J7uB/

中文 English

特点

  1. 集成segment anything快速进行图像分割标注

    • 通过鼠标左右键提示感兴趣区域调用segment anything自动计算分割掩码。不必再手动进行目标轮廓选取。
    • 自动生成的掩码转换为多边形,进行手动调整。
  2. 手动绘制多边形进行精细标注

    • 保留了ISAT手动绘制多边形进行标注的功能可满足Segment anything无法分割目标的标注。
    • 手动标注较自动标注更加精确,但工作量也更大。

安装

1. 源码运行

# 创建虚拟环境
conda create -n ISAT_with_segment_anything python==3.8
conda activate ISAT_with_segment_anything
# 安装Segment anything
git clone git@github.com:facebookresearch/segment-anything.git
cd segment-anything
pip install -e .
cd ..
# 安装ISAT_with_segment_anything
git clone https://github.com/yatengLG/ISAT_with_segment_anything.git
cd ISAT_with_segment_anything
pip install -r requirements.txt
# 下载Segment anything预训练模型
下载任一模型并将模型存放于ISAT_with_segment_anything/segment_any目录下
模型链接:
   https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth
   https://dl.fbaipublicfiles.com/segment_anything/sam_vit_l_0b3195.pth
   https://dl.fbaipublicfiles.com/segment_anything/sam_vit_b_01ec64.pth
h模型最大效果也最好
b模型最小效果也最差
请按照硬件下载合适的模型h模型在示例样本上的显存需求约8G.
# 运行软件
python main.py

标注操作

  1. 通过鼠标左键(或右键)提示感兴趣区域(或不感兴趣区域),自动形成目标分割掩码。
  2. 可通过多次左右键提示,提升掩码质量。
  3. E键结束标注选择类别得到多边形标注区域。
  4. 拖拽多边形顶点,精细化调整标注。

注意事项

  1. 自动分割效果受segment anything模型分割效果限制如需更为精确的分割效果可通过手动绘制多边形实现。
  2. 如只需要使用手动绘制多边形标注,推荐使用ISAT
  3. 如果没有GPU不建议使用ISAT_with_segment_anything载入图片花费时间较长。
  4. 如果GPU显存较小建议使用sam_vit_b_01ec64模型。
Description
No description provided
Readme 50 MiB
Languages
Python 100%