/// <summary>
 /// Create a Font of the specific type, horizontal scale and vertical scale
 /// </summary>
 /// <param name="type">The type of the font.</param>
 /// <param name="hscale">The horizontal scale of the font.</param>
 /// <param name="vscale">The vertical scale of the font.</param>
 /// <param name="thickness">Font thickness.</param>
 public Font(FontTypes type, double hscale, double vscale, int thickness = 1)
     : this()
 {
     CvCoreInvoke.cvInitFont(ref this, type, hscale, vscale, 0, thickness, LineTypes.EightConnected);
 }