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();
|
|
|
|
|
}
|