Show / Hide Table of Contents

Class ImageMetadata

Collection of metadata related to image record.

Inheritance
object
RecordMetadata
ImageMetadata
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatalabelingservicedataplaneService.Models
Assembly: OCI.DotNetSDK.Datalabelingservicedataplane.dll
Syntax
public class ImageMetadata : RecordMetadata

Properties

Depth

Declaration
[JsonProperty(PropertyName = "depth")]
public int? Depth { get; set; }
Property Value
Type Description
int?

Depth of the image record.

Height

Declaration
[JsonProperty(PropertyName = "height")]
public int? Height { get; set; }
Property Value
Type Description
int?

Height of the image record.

Width

Declaration
[JsonProperty(PropertyName = "width")]
public int? Width { get; set; }
Property Value
Type Description
int?

Width of the image record.

In this article
Back to top