Table of Contents

Class InstanceSegmentationResult<T>

Result of instance segmentation.

public class InstanceSegmentationResult<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
InstanceSegmentationResult<T>
Inherited Members

Properties

ImageHeight

Height of the input image.

public int ImageHeight { get; set; }

Property Value

int

ImageWidth

Width of the input image.

public int ImageWidth { get; set; }

Property Value

int

InferenceTime

Time taken for inference.

public TimeSpan InferenceTime { get; set; }

Property Value

TimeSpan

InstanceCount

Total number of instances detected.

public int InstanceCount { get; }

Property Value

int

Instances

List of detected instances with masks.

public List<InstanceMask<T>> Instances { get; set; }

Property Value

List<InstanceMask<T>>