public IImage <bool> Pad(int width, int height)
 => ImageBase.Pad(this, BinaryImage.Generate, width, height);
Beispiel #2
0
 public IImage <CMYK> DownsampleRows()
 => ImageBase.DownsampleRows(this, Generate);
Beispiel #3
0
 public IImage <CMYK> Crop(System.Drawing.Rectangle rect)
 => ImageBase.Crop(this, Generate, rect);
Beispiel #4
0
 IEnumerator <CMYK> IEnumerable <CMYK> .GetEnumerator()
 {
     return(ImageBase.GetEnumerator(this));
 }
Beispiel #5
0
 public IImage <CMYK> Transpose()
 => ImageBase.Transpose(this, CmykImage.Generate);
Beispiel #6
0
 public byte[] ToImage()
 => ImageBase.ToImage(this);
Beispiel #7
0
 public bool Contains(CMYK item)
 => ImageBase.Contains(this, item);
 public IImage <bool> Crop(System.Drawing.Rectangle rect)
 => ImageBase.Crop(this, BinaryImage.Generate, rect);
 public IImage <bool> Crop(int x1, int y1, int width, int height)
 => ImageBase.Crop(this, BinaryImage.Generate, x1, y1, width, height);
 public IImage <bool> Transpose()
 => ImageBase.Transpose(this, BinaryImage.Generate);
 IEnumerator <bool> IEnumerable <bool> .GetEnumerator()
 => ImageBase.GetEnumerator(this);
 public IImage <bool> FlipXY()
 => ImageBase.FlipXY(this, BinaryImage.Generate);
 public IImage <bool> DownsampleRows()
 => ImageBase.DownsampleRows(this, BinaryImage.Generate);
 public IImage <bool> UpsampleCols()
 => ImageBase.UpsampleCols(this, BinaryImage.Generate);
Beispiel #15
0
 public byte[] ToBGRA()
 => ImageBase.ToRGBA(this);
Beispiel #16
0
 public bool Contains(double item)
 {
     return(ImageBase.Contains(this, item));
 }
Beispiel #17
0
 public BGRA[] ToPixelColor()
 => ImageBase.ToPixelColor(this);
Beispiel #18
0
 IEnumerator <double> IEnumerable <double> .GetEnumerator()
 {
     return(ImageBase.GetEnumerator(this));
 }
Beispiel #19
0
 public void CopyTo(Array array, int index)
 => ImageBase.CopyTo(this, array, index);
Beispiel #20
0
 public IImage <double> Pad(int width, int height)
 => ImageBase.Pad(this, Image.Generate, width, height);
Beispiel #21
0
 public void CopyTo(CMYK[] array, int arrayIndex)
 => ImageBase.CopyTo(this, array, arrayIndex);
Beispiel #22
0
 public IImage <double> UpsampleRows()
 => ImageBase.UpsampleRows(this, Generate);
Beispiel #23
0
 public IImage <CMYK> Pad(int width, int height)
 => ImageBase.Pad(this, CmykImage.Generate, width, height);
Beispiel #24
0
 public IImage <double> DownsampleCols()
 => ImageBase.DownsampleCols(this, Generate);
Beispiel #25
0
 public IImage <CMYK> UpsampleRows()
 => ImageBase.UpsampleRows(this, Generate);
Beispiel #26
0
 public IImage <double> FlipY()
 => ImageBase.FlipY(this, Generate);
Beispiel #27
0
 public IImage <CMYK> FlipXY()
 => ImageBase.FlipXY(this, Generate);
Beispiel #28
0
 public byte[] ToBGR()
 => ImageBase.ToRGB(this);
Beispiel #29
0
 public IImage <CMYK> Crop(int x1, int y1, int width, int height)
 => ImageBase.Crop(this, Generate, x1, y1, width, height);
 public IImage<BGRA> Transpose()
     => ImageBase.Transpose(this, BgraImage.Generate);