mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 06:46:30 +00:00
14 lines
349 B
C#
14 lines
349 B
C#
using System.Windows.Media;
|
|
using Azaion.Common.Database;
|
|
using Azaion.Common.DTO;
|
|
|
|
namespace Azaion.Common.Services;
|
|
|
|
public interface IDetectionClassProvider
|
|
{
|
|
Dictionary<int, DetectionClass> GetDetectionClasses();
|
|
List<(Color Color, double Confidence)> GetColors(Annotation annotation);
|
|
string GetClassName(Annotation annotation);
|
|
}
|
|
|