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

9 lines
228 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);
}