Пример #1
0
 public ResizeAug(int size, ImgInterp interp = ImgInterp.Area_Based)
 {
     Size   = size;
     Interp = interp;
 }
Пример #2
0
 public static NDArray ImResize(NDArray src, int w, int h, ImgInterp interp = ImgInterp.Bilinear)
 {
     return(nd.Cvimresize(src, w, h, (int)interp));
 }