Class InstanceSegmentationResult<T>
- Assembly
- AiDotNet.dll
Result of instance segmentation.
public class InstanceSegmentationResult<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
InstanceSegmentationResult<T>
- Inherited Members
Properties
ImageHeight
Height of the input image.
public int ImageHeight { get; set; }
Property Value
ImageWidth
Width of the input image.
public int ImageWidth { get; set; }
Property Value
InferenceTime
Time taken for inference.
public TimeSpan InferenceTime { get; set; }
Property Value
InstanceCount
Total number of instances detected.
public int InstanceCount { get; }
Property Value
Instances
List of detected instances with masks.
public List<InstanceMask<T>> Instances { get; set; }
Property Value
- List<InstanceMask<T>>