I have the generic-enabled class that is decleared as:
public class Image<TColor, TDepth>
: CvArray<TDepth>, IImage, IEquatable<Image<TColor, TDepth>>
where TColor : struct, IColor
where TDepth : new()
{
private TDepth[, ,] _array;
What would TDepth[, ,] mean in this case? That it is just a two-dimensional array?
Close, but no: it’s a 3-dimensional array.