You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel.ML/DNN/Detectors/IObjectDetector.cs

16 lines
363 B

using System;
using System.Collections.Generic;
using ZeroLevel.ML.DNN.Models;
namespace ZeroLevel.ML.DNN.Detectors
{
public interface IObjectDetector
: IDisposable
{
float RNorm(float x);
float GNorm(float x);
float BNorm(float x);
List<YoloPrediction> Predict(FastTensorPool inputs, float threshold);
}
}

Powered by TurnKey Linux.