Files
bgr/src/BGR.Console/Removal/ITensor.cs
T
2025-02-14 01:45:35 +00:00

10 lines
252 B
C#

namespace BGR.Console.Removal;
internal interface ITensor<T>
{
int Height { get; }
int Width { get; }
void SetValue(int batch, int channel, int y, int x, T value);
float GetValue(int batch, int channel, int y, int x);
Tensor<T> ToTensor();
}