-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #199 from oracle/release_2023-09-12-v2
Releasing version 71.1.0
- Loading branch information
Showing
136 changed files
with
5,398 additions
and
198 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
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,58 @@ | ||
/* | ||
* Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved. | ||
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. | ||
*/ | ||
|
||
// NOTE: Code generated by OracleSDKGenerator. | ||
// DO NOT EDIT this file manually. | ||
|
||
|
||
using System.ComponentModel.DataAnnotations; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
using Newtonsoft.Json.Converters; | ||
|
||
|
||
namespace Oci.AivisionService.Models | ||
{ | ||
/// <summary> | ||
/// The detected face. | ||
/// </summary> | ||
public class Face | ||
{ | ||
|
||
/// <value> | ||
/// The confidence score, between 0 and 1. | ||
/// </value> | ||
/// <remarks> | ||
/// Required | ||
/// </remarks> | ||
[Required(ErrorMessage = "Confidence is required.")] | ||
[JsonProperty(PropertyName = "confidence")] | ||
public System.Nullable<float> Confidence { get; set; } | ||
|
||
/// <remarks> | ||
/// Required | ||
/// </remarks> | ||
[Required(ErrorMessage = "BoundingPolygon is required.")] | ||
[JsonProperty(PropertyName = "boundingPolygon")] | ||
public BoundingPolygon BoundingPolygon { get; set; } | ||
|
||
/// <value> | ||
/// The quality score of the face detected, between 0 and 1. | ||
/// </value> | ||
/// <remarks> | ||
/// Required | ||
/// </remarks> | ||
[Required(ErrorMessage = "QualityScore is required.")] | ||
[JsonProperty(PropertyName = "qualityScore")] | ||
public System.Nullable<float> QualityScore { get; set; } | ||
|
||
/// <value> | ||
/// A point of interest within a face. | ||
/// </value> | ||
[JsonProperty(PropertyName = "landmarks")] | ||
public System.Collections.Generic.List<Landmark> Landmarks { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved. | ||
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. | ||
*/ | ||
|
||
// NOTE: Code generated by OracleSDKGenerator. | ||
// DO NOT EDIT this file manually. | ||
|
||
|
||
using System.ComponentModel.DataAnnotations; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
using Newtonsoft.Json.Converters; | ||
|
||
|
||
namespace Oci.AivisionService.Models | ||
{ | ||
/// <summary> | ||
/// The face detection parameters. | ||
/// </summary> | ||
public class FaceDetectionFeature : ImageFeature | ||
{ | ||
|
||
/// <value> | ||
/// The maximum number of results to return. | ||
/// </value> | ||
[JsonProperty(PropertyName = "maxResults")] | ||
public System.Nullable<int> MaxResults { get; set; } | ||
|
||
/// <value> | ||
/// Whether or not return face landmarks. | ||
/// </value> | ||
[JsonProperty(PropertyName = "shouldReturnLandmarks")] | ||
public System.Nullable<bool> ShouldReturnLandmarks { get; set; } | ||
|
||
[JsonProperty(PropertyName = "featureType")] | ||
private readonly string featureType = "FACE_DETECTION"; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
* Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved. | ||
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. | ||
*/ | ||
|
||
// NOTE: Code generated by OracleSDKGenerator. | ||
// DO NOT EDIT this file manually. | ||
|
||
|
||
using System.ComponentModel.DataAnnotations; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
using Newtonsoft.Json.Converters; | ||
|
||
|
||
namespace Oci.AivisionService.Models | ||
{ | ||
/// <summary> | ||
/// The landmark on the face. | ||
/// </summary> | ||
public class Landmark | ||
{ | ||
/// | ||
/// <value> | ||
/// The face landmark type | ||
/// </value> | ||
/// | ||
public enum TypeEnum { | ||
/// This value is used if a service returns a value for this enum that is not recognized by this version of the SDK. | ||
[EnumMember(Value = null)] | ||
UnknownEnumValue, | ||
[EnumMember(Value = "LEFT_EYE")] | ||
LeftEye, | ||
[EnumMember(Value = "RIGHT_EYE")] | ||
RightEye, | ||
[EnumMember(Value = "NOSE_TIP")] | ||
NoseTip, | ||
[EnumMember(Value = "LEFT_EDGE_OF_MOUTH")] | ||
LeftEdgeOfMouth, | ||
[EnumMember(Value = "RIGHT_EDGE_OF_MOUTH")] | ||
RightEdgeOfMouth | ||
}; | ||
|
||
/// <value> | ||
/// The face landmark type | ||
/// </value> | ||
/// <remarks> | ||
/// Required | ||
/// </remarks> | ||
[Required(ErrorMessage = "Type is required.")] | ||
[JsonProperty(PropertyName = "type")] | ||
[JsonConverter(typeof(Oci.Common.Utils.ResponseEnumConverter))] | ||
public System.Nullable<TypeEnum> Type { get; set; } | ||
|
||
/// <value> | ||
/// The X-axis normalized coordinate. | ||
/// </value> | ||
/// <remarks> | ||
/// Required | ||
/// </remarks> | ||
[Required(ErrorMessage = "X is required.")] | ||
[JsonProperty(PropertyName = "x")] | ||
public System.Nullable<float> X { get; set; } | ||
|
||
/// <value> | ||
/// The Y-axis normalized coordinate. | ||
/// </value> | ||
/// <remarks> | ||
/// Required | ||
/// </remarks> | ||
[Required(ErrorMessage = "Y is required.")] | ||
[JsonProperty(PropertyName = "y")] | ||
public System.Nullable<float> Y { 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
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
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
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
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
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.