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