zxing和Aforge阿兹台克条形码阅读

时间:2018-11-10 06:04:06

标签: zxing aforge aztec-barcode

private readonly IBarcodeReader barcodeReader;
barcodeReader = new BarcodeReader {
    AutoRotate = true,
    Options = new DecodingOptions {
        TryHarder = true,
        PossibleFormats = new List < BarcodeFormat {
            BarcodeFormat.AZTEC
        }
    }
};
currentBitmapForDecoding = new Bitmap(@ "F:\Aztec-Code-Scandit.png");
Result result = barcodeReader.Decode(currentBitmapForDecoding);

当我从物理路径中读取图像时它起作用,但是当我分配当前帧时 到currentBitmapForDecoding的网络摄像头中读取任何人都无法读懂Aztec Barcode.pls,这对我如何帮助我从网络摄像头读取aztec条形码毫无帮助。我也减小了框架尺寸,但无法使用。

0 个答案:

没有答案