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条形码毫无帮助。我也减小了框架尺寸,但无法使用。