let detector:CIDetector=CIDetector(ofType: CIDetectorTypeQRCode, context: nil, options: [CIDetectorAccuracy:CIDetectorAccuracyHigh])!
它工作正常,在設備,但生成構建的iTunes分發時,它提供錯誤: "Value of type '[String:AnyObje
我還發現這個問題on Apple Dev Forum。 設置CIDetectorTypeRectangle的CIDetector可能返回多於一個矩形嗎? 目前,即使圖片中有多個矩形,此代碼始終會返回的0或1。 let context = CIContext()
let opts = [CIDetectorAccuracy : CIDetectorAccuracyHigh]
let detect
我想從實時相機和圖像中掃描qr和條形碼。我以前使用ZBar庫來掃描代碼。它不掃描特定類型的qr和條形碼。此外,蘋果的AVFoundation框架在從實時相機掃描代碼時看起來更加快速準確。 所以我不想使用ZBar。爲了掃描從圖庫中挑選的圖像中的代碼,我使用了CIDetector。但似乎CIDetector無法掃描圖像中的條形碼。我已經找遍了堆過流CIDetector For other Barcod