Features.ImageInfo.oirgIm2grayCropped C# (CSharp) Méthode

oirgIm2grayCropped() public méthode

convers the image into a grayscaled bimap with an area
public oirgIm2grayCropped ( System image ) : void
image System
Résultat void
        public void oirgIm2grayCropped(System.Drawing.Image image)
        {
            Bitmap origImCropped = new Bitmap(image, croppedSize(image.Size));
            _imGray = GRAY_FILTER.Apply(origImCropped);
        }