Skip to content

Commit

Permalink
v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yatengLG committed Sep 14, 2024
1 parent eb95055 commit 2b09db0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,14 @@

- 功能修复

模型下载,点击按钮后,进度现在更直观了。
模型下载,点击按钮后,进度现在更直观了。

## 1.1.1
- 添加了sam2模型的图像分割功能
- 添加拖拽打开文件功能

## 1.2.0
- 添加了对sam2图像分割的支持

## 1.2.1
- 修复pip安装时的依赖项
2 changes: 1 addition & 1 deletion ISAT/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# @Author : LG

__author__ = 'yatengLG'
__version__ = '1.2.0'
__version__ = '1.2.1'
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ def get_install_requires():
author="yatengLG",
author_email="[email protected]",
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", # 项目相关文件地址
Expand All @@ -58,6 +57,9 @@ def get_install_requires():
'torchvision',
'pycocotools',
'timm',
'shapely',
'hydra-core>=1.3.2',
'tqdm>=4.66.1'
],

classifiers=[
Expand Down

0 comments on commit 2b09db0

Please sign in to comment.