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?
It is a Multidimensional Array
. In this case, it has 3 dimensions.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With