Files
bgr/src/BGR.Console/Removal/ITensor.cs
T

11 lines
253 B
C#
Raw Normal View History

2025-02-09 23:22:21 -06:00
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);
2025-02-13 17:24:38 -06:00
Tensor<T> ToTensor();
}