Show / Hide Table of Contents

Class TimeSegment

A time period inside of an example that has a time dimension (e.g. video).

Inheritance
System.Object
TimeSegment
Implements
IMessage<TimeSegment>
System.IEquatable<TimeSegment>
IDeepCloneable<TimeSegment>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class TimeSegment : IMessage<TimeSegment>, IEquatable<TimeSegment>, IDeepCloneable<TimeSegment>, IBufferMessage, IMessage

Constructors

TimeSegment()

Declaration
public TimeSegment()

TimeSegment(TimeSegment)

Declaration
public TimeSegment(TimeSegment other)
Parameters
Type Name Description
TimeSegment other

Properties

EndTimeOffset

End of the time segment (exclusive), represented as the duration since the example start.

Declaration
public Duration EndTimeOffset { get; set; }
Property Value
Type Description
Duration

StartTimeOffset

Start of the time segment (inclusive), represented as the duration since the example start.

Declaration
public Duration StartTimeOffset { get; set; }
Property Value
Type Description
Duration
Back to top