Last active
September 28, 2021 13:23
-
-
Save paulofierro/23d811c94cf36f143b16ee5f9d462085 to your computer and use it in GitHub Desktop.
Code sample for https://paulofierro.com/blog/2021/9/27/when-barcodes-attack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let request = VNDetectBarcodesRequest(completionHandler: nil) | |
request.symbologies = VNDetectBarcodesRequest | |
.supportedSymbologies | |
.filter { | |
$0.rawValue.contains("PDF417") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment