Features.ImageInfo.oirgIm2grayCropped C# (CSharp) 메소드

oirgIm2grayCropped() 공개 메소드

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