Show / Hide Table of Contents

Class AnalyzeImageDetails

The details of how to analyze an image.

Inheritance
object
AnalyzeImageDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class AnalyzeImageDetails

Properties

CompartmentId

Declaration
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the compartment that calls the API.

Features

Declaration
[Required(ErrorMessage = "Features is required.")]
[JsonProperty(PropertyName = "features")]
public List<ImageFeature> Features { get; set; }
Property Value
Type Description
List<ImageFeature>

The types of image analysis.

Remarks

Required

Image

Declaration
[Required(ErrorMessage = "Image is required.")]
[JsonProperty(PropertyName = "image")]
public ImageDetails Image { get; set; }
Property Value
Type Description
ImageDetails
Remarks

Required

In this article
Back to top