-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6b7892
commit c1c2f83
Showing
91 changed files
with
2,688 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
### 2020-02-28 Version 0.0.3 | ||
* Recodegen | ||
|
||
### 2020-02-20 Version 0.0.2 | ||
* Improved packages version | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
facebody-20191230/csharp/core/Models/DetectBodyCountAdvanceRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// This file is auto-generated, don't edit it. Thanks. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
using Tea; | ||
|
||
namespace AlibabaCloud.Facebody.Models | ||
{ | ||
public class DetectBodyCountAdvanceRequest : TeaModel { | ||
[NameInMap("ImageURLObject")] | ||
[Validation(Required=true)] | ||
public Stream ImageURLObject { get; set; } | ||
|
||
} | ||
|
||
} |
18 changes: 18 additions & 0 deletions
18
facebody-20191230/csharp/core/Models/DetectBodyCountRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// This file is auto-generated, don't edit it. Thanks. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
using Tea; | ||
|
||
namespace AlibabaCloud.Facebody.Models | ||
{ | ||
public class DetectBodyCountRequest : TeaModel { | ||
[NameInMap("ImageURL")] | ||
[Validation(Required=true)] | ||
public string ImageURL { get; set; } | ||
|
||
} | ||
|
||
} |
27 changes: 27 additions & 0 deletions
27
facebody-20191230/csharp/core/Models/DetectBodyCountResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// This file is auto-generated, don't edit it. Thanks. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
using Tea; | ||
|
||
namespace AlibabaCloud.Facebody.Models | ||
{ | ||
public class DetectBodyCountResponse : TeaModel { | ||
[NameInMap("RequestId")] | ||
[Validation(Required=true)] | ||
public string RequestId { get; set; } | ||
|
||
[NameInMap("Data")] | ||
[Validation(Required=true)] | ||
public DetectBodyCountResponseData Data { get; set; } | ||
public class DetectBodyCountResponseData : TeaModel { | ||
[NameInMap("PersonNumber")] | ||
[Validation(Required=true)] | ||
public int? PersonNumber { get; set; } | ||
}; | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
facebody-20191230/csharp/core/Models/DetectLivingFaceRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// This file is auto-generated, don't edit it. Thanks. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
using Tea; | ||
|
||
namespace AlibabaCloud.Facebody.Models | ||
{ | ||
public class DetectLivingFaceRequest : TeaModel { | ||
[NameInMap("Tasks")] | ||
[Validation(Required=true)] | ||
public List<DetectLivingFaceRequestTasks> Tasks { get; set; } | ||
public class DetectLivingFaceRequestTasks : TeaModel { | ||
[NameInMap("ImageURL")] | ||
[Validation(Required=true)] | ||
public string ImageURL { get; set; } | ||
|
||
} | ||
|
||
} | ||
|
||
} |
42 changes: 42 additions & 0 deletions
42
facebody-20191230/csharp/core/Models/DetectLivingFaceResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// This file is auto-generated, don't edit it. Thanks. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
using Tea; | ||
|
||
namespace AlibabaCloud.Facebody.Models | ||
{ | ||
public class DetectLivingFaceResponse : TeaModel { | ||
[NameInMap("RequestId")] | ||
[Validation(Required=true)] | ||
public string RequestId { get; set; } | ||
|
||
[NameInMap("Data")] | ||
[Validation(Required=true)] | ||
public DetectLivingFaceResponseData Data { get; set; } | ||
public class DetectLivingFaceResponseData : TeaModel { | ||
[NameInMap("Elements")] | ||
[Validation(Required=true)] | ||
public List<DetectLivingFaceResponseDataElements> Elements { get; set; } | ||
public class DetectLivingFaceResponseDataElements : TeaModel { | ||
public string TaskId { get; set; } | ||
public string ImageURL { get; set; } | ||
public List<DetectLivingFaceResponseDataElementsResults> Results { get; set; } | ||
public class DetectLivingFaceResponseDataElementsResults : TeaModel { | ||
public string Label { get; set; } | ||
public string Suggestion { get; set; } | ||
public float Rate { get; set; } | ||
public List<DetectLivingFaceResponseDataElementsResultsFrames> Frames { get; set; } | ||
public class DetectLivingFaceResponseDataElementsResultsFrames : TeaModel { | ||
public float Rate { get; set; } | ||
public string Url { get; set; } | ||
} | ||
} | ||
} | ||
}; | ||
|
||
} | ||
|
||
} |
18 changes: 18 additions & 0 deletions
18
facebody-20191230/csharp/core/Models/RecognizeExpressionAdvanceRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// This file is auto-generated, don't edit it. Thanks. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
using Tea; | ||
|
||
namespace AlibabaCloud.Facebody.Models | ||
{ | ||
public class RecognizeExpressionAdvanceRequest : TeaModel { | ||
[NameInMap("ImageURLObject")] | ||
[Validation(Required=true)] | ||
public Stream ImageURLObject { get; set; } | ||
|
||
} | ||
|
||
} |
18 changes: 18 additions & 0 deletions
18
facebody-20191230/csharp/core/Models/RecognizeExpressionRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// This file is auto-generated, don't edit it. Thanks. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
using Tea; | ||
|
||
namespace AlibabaCloud.Facebody.Models | ||
{ | ||
public class RecognizeExpressionRequest : TeaModel { | ||
[NameInMap("ImageURL")] | ||
[Validation(Required=true)] | ||
public string ImageURL { get; set; } | ||
|
||
} | ||
|
||
} |
50 changes: 50 additions & 0 deletions
50
facebody-20191230/csharp/core/Models/RecognizeExpressionResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// This file is auto-generated, don't edit it. Thanks. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
using Tea; | ||
|
||
namespace AlibabaCloud.Facebody.Models | ||
{ | ||
public class RecognizeExpressionResponse : TeaModel { | ||
[NameInMap("RequestId")] | ||
[Validation(Required=true)] | ||
public string RequestId { get; set; } | ||
|
||
[NameInMap("Data")] | ||
[Validation(Required=true)] | ||
public RecognizeExpressionResponseData Data { get; set; } | ||
public class RecognizeExpressionResponseData : TeaModel { | ||
[NameInMap("Elements")] | ||
[Validation(Required=true)] | ||
public List<RecognizeExpressionResponseDataElements> Elements { get; set; } | ||
public class RecognizeExpressionResponseDataElements : TeaModel { | ||
public string Expression { get; set; } | ||
public float FaceProbability { get; set; } | ||
public RecognizeExpressionResponseDataElementsFaceRectangle FaceRectangle { get; set; } | ||
public class RecognizeExpressionResponseDataElementsFaceRectangle : TeaModel { | ||
[NameInMap("Height")] | ||
[Validation(Required=true)] | ||
public int? Height { get; set; } | ||
|
||
[NameInMap("Left")] | ||
[Validation(Required=true)] | ||
public int? Left { get; set; } | ||
|
||
[NameInMap("Top")] | ||
[Validation(Required=true)] | ||
public int? Top { get; set; } | ||
|
||
[NameInMap("Width")] | ||
[Validation(Required=true)] | ||
public int? Width { get; set; } | ||
|
||
} | ||
} | ||
}; | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.