簡體   English   中英

Digital Persona 指紋捕獲的圖像為 WSQ

[英]Digital Persona Finger Print captured image as WSQ

我正在使用 Digital Persona 指紋設備,需要將圖像捕獲為WSQ格式而不是Bmp格式
使用C# DigitalPersona 一鍵式 Windows SDK

示例代碼

private DPFP.Capture.SampleConversion SampleConversion;
private Bitmap Image;
public async void OnComplete(object Capture, string ReaderSerialNumber, DPFP.Sample Sample)
        {

            var imgName = string.Format("fingerprint{0}.bmp", DateTime.Now.Ticks);
            SampleConversion.ConvertToPicture(Sample, ref Image);
            Image.Save(imgName, System.Drawing.Imaging.ImageFormat.Bmp);
        }

我在wsq中找到了將bmp轉換為 wsq wsq的庫,但wsq的結果不正確,
任何直接從wsq返回 wsq 格式的捕獲圖像的解決方案?

為了實現我所需要的,我執行以下操作:

我使用了 2 個庫

1 - AForge.ImagingAForge.Imaging.FormatsDelta.Wsq DLL

            private Bitmap Image;

        public async void OnComplete(object Capture, string ReaderSerialNumber, DPFP.Sample Sample)
           {
            SampleConversion.ConvertToPicture(Sample, ref Image);
            Image.RotateFlip(RotateFlipType.Rotate180FlipNone);
            Image = resizeImage(364, 400, Image);
            var img8bppx = Grayscale.CommonAlgorithms.BT709.Apply(Image);

            var rawImageData = Conversions.GdiImageToImageInfo(img8bppx);
            WsqEncoder encoder = new WsqEncoder();
            var result = encoder.Encode(rawImageData);
            }

並且是調整大小的方法

public Bitmap resizeImage(int newWidth, int newHeight, Image imgPhoto)
        {
            int sourceWidth = imgPhoto.Width;
            int sourceHeight = imgPhoto.Height;

            //Consider vertical pics
            if (sourceWidth < sourceHeight)
            {
                int buff = newWidth;

                newWidth = newHeight;
                newHeight = buff;
            }

            int sourceX = 0, sourceY = 0, destX = 0, destY = 0;
            float nPercent = 0, nPercentW = 0, nPercentH = 0;

            nPercentW = ((float)newWidth / (float)sourceWidth);
            nPercentH = ((float)newHeight / (float)sourceHeight);
            if (nPercentH < nPercentW)
            {
                nPercent = nPercentH;
                destX = System.Convert.ToInt16((newWidth -
                          (sourceWidth * nPercent)) / 2);
            }
            else
            {
                nPercent = nPercentW;
                destY = System.Convert.ToInt16((newHeight -
                          (sourceHeight * nPercent)) / 2);
            }

            int destWidth = (int)(sourceWidth * nPercent);
            int destHeight = (int)(sourceHeight * nPercent);


            Bitmap bmPhoto = new Bitmap(newWidth, newHeight,
                          PixelFormat.Format24bppRgb);

            bmPhoto.SetResolution(imgPhoto.HorizontalResolution,
                         imgPhoto.VerticalResolution);

            Graphics grPhoto = Graphics.FromImage(bmPhoto);
            grPhoto.Clear(Color.Black);
            grPhoto.InterpolationMode =
                System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;

            grPhoto.DrawImage(imgPhoto,
                new Rectangle(destX, destY, destWidth, destHeight),
                new Rectangle(sourceX, sourceY, sourceWidth, sourceHeight),
                GraphicsUnit.Pixel);

            grPhoto.Dispose();
            imgPhoto.Dispose();
            return bmPhoto;
        }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM