Please use. NET 5,. NET 6, NET 7,. NET 8, NET Framework 4.6, NET Framework 4.61, NET Framework 4.7, NET Framework 4.72, NET Framework 4.8, NET Framework 4.81, and. NET Core 3.1 versions

IYolov11PoseModel 类

Abstract base implementation of YOLOv11 Pose Estimation model YOLOv11姿态估计模型的抽象基类实现

Definition

命名空间: DeploySharp.Model
程序集: DeploySharp (在 DeploySharp.dll 中) 版本:0.0.4+6e8a2e904469617cd59619d666c0e272985c0e33
C#
public abstract class IYolov11PoseModel : IYolov8PoseModel
Inheritance
Object    IModel    IYolov8PoseModel    IYolov11PoseModel
Derived

备注

Specialized for detecting human poses with keypoints in addition to bounding boxes. 专门用于检测带有关键点的人类姿态。

Key features: 主要特性: - Jointly predicts bounding boxes and human keypoints 联合预测边界框和人体关键点 - Processes 17/21 standard human pose keypoints (configurable) 处理17/21个标准人体姿态关键点(可配置) - Simultaneous confidence filtering for boxes and keypoints 同时对框和关键点进行置信度过滤

Output format explanation: 输出格式说明: Each prediction contains: 每个预测包含: [cx,cy,w,h,conf, kpx1,kpy1,kpconf1, ..., kpxN,kpyN,kpconfN]

构造函数

IYolov11PoseModel Initializes a new instance of YOLOv11 Pose detector 初始化YOLOv11姿态检测器的新实例

属性

ModelInferenceProfiler Performance profiler recording timing metrics 记录时间指标的性能分析器
(继承自 IModel。)

方法

Dispose Releases model resources 释放模型资源
(继承自 IModel。)
EqualsDetermines whether the specified object is equal to the current object.
(继承自 Object。)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(继承自 Object。)
GetHashCodeServes as the default hash function.
(继承自 Object。)
GetTypeGets the Type of the current instance.
(继承自 Object。)
MemberwiseCloneCreates a shallow copy of the current Object.
(继承自 Object。)
Postprocess Post-processes raw model output to extract pose estimation results 对原始模型输出进行后处理以提取姿态估计结果
(继承自 IYolov8PoseModel。)
Predict(ListObject) Performs batch prediction on multiple inputs 对多个输入执行批量预测
(继承自 IModel。)
Predict(Object) Predicts human poses in input image and returns keypoint results 预测输入图像中的人体姿态并返回关键点结果
PredictAsync Asynchronously performs prediction on single input 异步执行单个输入预测
(继承自 IModel。)
Preprocess Abstract method for input preprocessing 输入预处理的抽象方法
(继承自 IModel。)
ToStringReturns a string that represents the current object.
(继承自 Object。)

字段

config Model configuration parameters 模型配置参数
(继承自 IModel。)
engine Inference engine instance 推理引擎实例
(继承自 IModel。)
predictorTimer Timer measuring different prediction phases 测量不同预测阶段的计时器
(继承自 IModel。)

参见