增加了通过网络主动上报图像的支持
增加了指令维护通道的支持
This commit is contained in:
@@ -28,6 +28,12 @@ public class SmartFrame : IDisposable
|
||||
/// <remarks> 内存由帧池预分配,全程复用,不触发 GC </remarks>
|
||||
public Mat InternalMat { get; private set; }
|
||||
|
||||
/// <summary> [快捷属性] 原始图像宽度 (若 TargetMat 为空则返回 0) </summary>
|
||||
public int InternalWidth => InternalMat?.Width ?? 0;
|
||||
|
||||
/// <summary> [快捷属性] 原始图像高度 (若 TargetMat 为空则返回 0) </summary>
|
||||
public int InnernalHeight => InternalMat?.Height ?? 0;
|
||||
|
||||
/// <summary> 帧激活时间戳(记录帧被取出池的时刻) </summary>
|
||||
public DateTime Timestamp { get; private set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user