Skip to content

Commit 2b09db0

Browse files
committed
v1.2.1
1 parent eb95055 commit 2b09db0

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,14 @@
117117

118118
- 功能修复
119119

120-
模型下载,点击按钮后,进度现在更直观了。
120+
模型下载,点击按钮后,进度现在更直观了。
121+
122+
## 1.1.1
123+
- 添加了sam2模型的图像分割功能
124+
- 添加拖拽打开文件功能
125+
126+
## 1.2.0
127+
- 添加了对sam2图像分割的支持
128+
129+
## 1.2.1
130+
- 修复pip安装时的依赖项

ISAT/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# @Author : LG
33

44
__author__ = 'yatengLG'
5-
__version__ = '1.2.0'
5+
__version__ = '1.2.1'

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ def get_install_requires():
3333
author="yatengLG",
3434
author_email="[email protected]",
3535
description="Interactive semi-automatic annotation tool for image segmentation based on SAM(segment anything model).",
36-
long_description=(codecs.open("README.md", encoding='utf-8').read() + "\n" +
37-
codecs.open("CHANGELOG.md", encoding='utf-8').read()),
36+
long_description=(codecs.open("README.md", encoding='utf-8').read()),
3837
long_description_content_type="text/markdown",
3938

4039
url="https://github.com/yatengLG/ISAT_with_segment_anything", # 项目相关文件地址
@@ -58,6 +57,9 @@ def get_install_requires():
5857
'torchvision',
5958
'pycocotools',
6059
'timm',
60+
'shapely',
61+
'hydra-core>=1.3.2',
62+
'tqdm>=4.66.1'
6163
],
6264

6365
classifiers=[

0 commit comments

Comments
 (0)