版本260406
This commit is contained in:
16
OrpaonVision.SiteApp/Runtime/Services/IInferenceService.cs
Normal file
16
OrpaonVision.SiteApp/Runtime/Services/IInferenceService.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using OrpaonVision.Core.Results;
|
||||
using OrpaonVision.SiteApp.Runtime.Contracts;
|
||||
|
||||
namespace OrpaonVision.SiteApp.Runtime.Services
|
||||
{
|
||||
/// <summary>
|
||||
/// 推理服务接口。
|
||||
/// </summary>
|
||||
public interface IInferenceService
|
||||
{
|
||||
/// <summary>
|
||||
/// 对帧执行推理。
|
||||
/// </summary>
|
||||
Result<InferenceResultDto> Predict(CameraFrameDto frame);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user