Skip to content

Commit

Permalink
Update SegmentCloth.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 19, 2024
1 parent bfe884e commit 07c982f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-07-19 Version: 0.0.12
- Update SegmentCloth.

2024-07-18 Version: 1.0.0
初始发布

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ public SegmentClothRequest()

private string returnForm;

private long? outMode;

private string imageURL;

public List<string> ClothClasss
Expand Down Expand Up @@ -72,6 +74,19 @@ public string ReturnForm
}
}

public long? OutMode
{
get
{
return outMode;
}
set
{
outMode = value;
DictionaryUtil.Add(QueryParameters, "OutMode", value.ToString());
}
}

public string ImageURL
{
get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<RootNamespace>Aliyun.Acs.imageseg</RootNamespace>
<Version>0.0.11</Version>
<Version>0.0.12</Version>
<Authors>Alibaba Cloud</Authors>
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down

0 comments on commit 07c982f

Please sign in to comment.