Enum YoloModelType
Represents the different types of tasks that the Yolo model can perform.
Namespace: EyeAuras.OpenCVAuras.ML.Yolo
Assembly: EyeAuras.OpenCVAuras.Shared.dll
Syntax
public enum YoloModelType
Fields
Name | Description |
---|---|
Classification | Classification: Assigns a class label to the whole image or specific objects within it, based on the learned features from the training data. |
ObjectDetection | Object Detection: Identifies objects in an image and their locations. Often used to recognize multiple objects and their boundaries. |
PoseDetection | Pose Detection: Identifies the position and orientation of one or more individuals in an image, typically used to understand human body positions. |
Segmentation | Segmentation: Divides an image into segments to simplify the representation of an image into something more meaningful and easier to analyze. |