I know how to use this function according to the example,i'm just wondering is there any ways to explain this.
    [SerializableAttribute]
public class Image<TColor, TDepth> : CvArray<TDepth>, 
    IImage, IDisposable, ICloneable, IEquatable<Image<TColor, TDepth>>
where TColor : new(), ColorType
 Image<Bgr, Byte> img = 
           new Image<Bgr, byte>(fileNameTextBox.Text)
           .Resize(400, 400, Emgu.CV.CvEnum.Inter.Linear, true);
i cannot offer more information about this,Thank you!
 
    