Example #1
0
 public static Mat LoadMat(String name)
 {
     return(AssetsUtil.LoadMat(name));
 }
Example #2
0
 public static String GetFile(String fileName)
 {
     return(AssetsUtil.LoadFile(fileName));
 }
Example #3
0
 public static Image <TColor, TDepth> LoadImage <TColor, TDepth>(String name)
     where TColor : struct, IColor
     where TDepth : new()
 {
     return(AssetsUtil.LoadImage <TColor, TDepth>(name));
 }