From 2b09db01b02136c9dd4a0c31123491d08dcbf97d Mon Sep 17 00:00:00 2001 From: yatenglg <767624851@qq.com> Date: Sat, 14 Sep 2024 14:11:22 +0800 Subject: [PATCH] v1.2.1 --- CHANGELOG.md | 12 +++++++++++- ISAT/__init__.py | 2 +- setup.py | 6 ++++-- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bacf2e..6d3eb92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -117,4 +117,14 @@ - 功能修复 - 模型下载,点击按钮后,进度现在更直观了。 \ No newline at end of file + 模型下载,点击按钮后,进度现在更直观了。 + +## 1.1.1 +- 添加了sam2模型的图像分割功能 +- 添加拖拽打开文件功能 + +## 1.2.0 +- 添加了对sam2图像分割的支持 + +## 1.2.1 +- 修复pip安装时的依赖项 diff --git a/ISAT/__init__.py b/ISAT/__init__.py index 517bd36..8c9f16c 100644 --- a/ISAT/__init__.py +++ b/ISAT/__init__.py @@ -2,4 +2,4 @@ # @Author : LG __author__ = 'yatengLG' -__version__ = '1.2.0' +__version__ = '1.2.1' diff --git a/setup.py b/setup.py index 8dff904..ac29c28 100644 --- a/setup.py +++ b/setup.py @@ -33,8 +33,7 @@ def get_install_requires(): author="yatengLG", author_email="yatenglg@foxmail.com", description="Interactive semi-automatic annotation tool for image segmentation based on SAM(segment anything model).", - long_description=(codecs.open("README.md", encoding='utf-8').read() + "\n" + - codecs.open("CHANGELOG.md", encoding='utf-8').read()), + long_description=(codecs.open("README.md", encoding='utf-8').read()), long_description_content_type="text/markdown", url="https://github.com/yatengLG/ISAT_with_segment_anything", # 项目相关文件地址 @@ -58,6 +57,9 @@ def get_install_requires(): 'torchvision', 'pycocotools', 'timm', + 'shapely', + 'hydra-core>=1.3.2', + 'tqdm>=4.66.1' ], classifiers=[