提问人:SoftwareDude 提问时间:11/2/2023 更新时间:11/2/2023 访问量:34
使用 Camera.MAUI 在 iOS 上检测密集 PDF417 条码的最佳条形码选项?
Best BarCodeOptions for detecting dense PDF417 barcodes on iOS using Camera.MAUI?
问:
使用 Camera.MAUI 检测 iOS 上的 PDF417 条形码的普通 C#/.NET/MAUI 应用程序出现问题。我可以检测到这样的简单代码,但驾驶执照上更密集的条形码就没有运气了。
我在 ContentPage 中对 cameraView (Camera.MAUI.CameraView) 的设置是:
public MainPage()
{
InitializeComponent();
cameraView.CamerasLoaded += CameraView_CamerasLoaded;
cameraView.BarcodeDetected += CameraView_BarcodeDetected;
cameraView.BarCodeOptions = new Camera.MAUI.ZXingHelper.BarcodeDecodeOptions
{
AutoRotate = true,
PossibleFormats = {ZXing.BarcodeFormat.PDF_417},
ReadMultipleCodes = false,
TryHarder = true,
TryInverted = true
};
cameraView.BarCodeDetectionFrameRate = 10;
cameraView.BarCodeDetectionMaxThreads = 5;
cameraView.ControlBarcodeResultDuplicate = true;
cameraView.BarCodeDetectionEnabled = true;
}
CameraView_BarcodeDetected只是在检测到条形码时发出警报。它针对简单的条形码触发,但从不针对美国驾照上的条形码触发。
我怀疑答案在于对 BarCodeDetectionFrameRate 和 BarCodeDetectionMaxThreads 使用不同的值,但在几款不同的 iPhone 14 设备上进行测试时还没有找到特殊的组合。有没有人能够使用 Camera.MAUI 在 iOS 上检测驾照条形码?
答: 暂无答案
评论