Class AnalyzeImageResult
The image analysis results.
Inherited Members
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class AnalyzeImageResult
Properties
DetectedFaces
Declaration
[JsonProperty(PropertyName = "detectedFaces")]
public List<Face> DetectedFaces { get; set; }
Property Value
Type | Description |
---|---|
List<Face> | The detected faces. |
Errors
Declaration
[JsonProperty(PropertyName = "errors")]
public List<ProcessingError> Errors { get; set; }
Property Value
Type | Description |
---|---|
List<ProcessingError> | The errors encountered during image analysis. |
FaceDetectionModelVersion
Declaration
[JsonProperty(PropertyName = "faceDetectionModelVersion")]
public string FaceDetectionModelVersion { get; set; }
Property Value
Type | Description |
---|---|
string | The face detection model version. |
ImageClassificationModelVersion
Declaration
[JsonProperty(PropertyName = "imageClassificationModelVersion")]
public string ImageClassificationModelVersion { get; set; }
Property Value
Type | Description |
---|---|
string | The image classification model version. |
ImageObjects
Declaration
[JsonProperty(PropertyName = "imageObjects")]
public List<ImageObject> ImageObjects { get; set; }
Property Value
Type | Description |
---|---|
List<ImageObject> | The detected objects. |
ImageText
Declaration
[JsonProperty(PropertyName = "imageText")]
public ImageText ImageText { get; set; }
Property Value
Type | Description |
---|---|
ImageText |
Labels
Declaration
[JsonProperty(PropertyName = "labels")]
public List<Label> Labels { get; set; }
Property Value
Type | Description |
---|---|
List<Label> | The image classification labels. |
ObjectDetectionModelVersion
Declaration
[JsonProperty(PropertyName = "objectDetectionModelVersion")]
public string ObjectDetectionModelVersion { get; set; }
Property Value
Type | Description |
---|---|
string | The object detection model version. |
OntologyClasses
Declaration
[JsonProperty(PropertyName = "ontologyClasses")]
public List<OntologyClass> OntologyClasses { get; set; }
Property Value
Type | Description |
---|---|
List<OntologyClass> | The ontologyClasses of image labels. |
TextDetectionModelVersion
Declaration
[JsonProperty(PropertyName = "textDetectionModelVersion")]
public string TextDetectionModelVersion { get; set; }
Property Value
Type | Description |
---|---|
string | The text detection model version. |