溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

iOS開(kāi)發(fā)教程之識(shí)別圖片中二維碼功能的實(shí)現(xiàn)

發(fā)布時(shí)間:2020-10-09 05:30:06 來(lái)源:腳本之家 閱讀:276 作者:cdcyd 欄目:移動(dòng)開(kāi)發(fā)

前言

大家應(yīng)該都知道在iOS的CoreImage的Api中,有一個(gè)CIDetector的類,Detector的中文翻譯有探測(cè)器的意思,那么CIDetector是用來(lái)做哪些的呢?

它可以:

  • CIDetectorTypeFace 面部識(shí)別
  • CIDetectorTypeText 文本識(shí)別
  • CIDetectorTypeQRCode 條碼識(shí)別
  • CIDetectorTypeRectangle 矩形識(shí)別

這個(gè)類其實(shí)很簡(jiǎn)單,它的頭文件代碼很少,下面來(lái)看一下注釋

open class CIDetector : NSObject {
 // 初始化方法
 public init?(ofType type: String, context: CIContext?, options: [String : Any]? = nil)
 // 獲取識(shí)別特征
 open func features(in image: CIImage) -> [CIFeature]
 open func features(in image: CIImage, options: [String : Any]? = nil) -> [CIFeature]
}
// 識(shí)別類型
public let CIDetectorTypeFace: String // 面部識(shí)別
public let CIDetectorTypeRectangle: String // 矩形識(shí)別
public let CIDetectorTypeQRCode: String // 條碼識(shí)別
public let CIDetectorTypeText: String // 文本識(shí)別
// 下面定義的就是options中可以傳的參數(shù)
public let CIDetectorAccuracy: String // 識(shí)別精度
public let CIDetectorAccuracyLow: String // 低精度,識(shí)別速度快
public let CIDetectorAccuracyHigh: String // 高精度,識(shí)別速度慢
public let CIDetectorTracking: String // 是否開(kāi)啟面部追蹤
public let CIDetectorMinFeatureSize: String // 指定最小尺寸的檢測(cè)器,小于這個(gè)尺寸的特征將不識(shí)別,CIDetectorTypeFace(0.01 ~ 0.50),CIDetectorTypeText(0.00 ~ 1.00),CIDetectorTypeRectangle(0.00 ~ 1.00)
public let CIDetectorMaxFeatureCount: String // 設(shè)置返回矩形特征的最多個(gè)數(shù) 1 ~ 256 默認(rèn)值為1
public let CIDetectorNumberOfAngles: String // 設(shè)置角度的個(gè)數(shù) 1, 3, 5, 7, 9, 11
public let CIDetectorImageOrientation: String // 識(shí)別方向
public let CIDetectorEyeBlink: String // 眨眼特征
public let CIDetectorSmile: String // 笑臉特征
public let CIDetectorFocalLength: String // 每幀焦距
public let CIDetectorAspectRatio: String // 矩形寬高比
public let CIDetectorReturnSubFeatures: String // 文本檢測(cè)器是否應(yīng)該檢測(cè)子特征,默認(rèn)值是否

下面是二維碼識(shí)別的實(shí)例代碼

func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
 // 1.取到圖片
 let image = info[UIImagePickerController.InfoKey.originalImage] as? UIImage
 // 2.生成CIImage
 let ciimage = CIImage(cgImage: image!.cgImage!)
 // 3.識(shí)別精度
 let options = [CIDetectorAccuracy: CIDetectorAccuracyHigh]

 /**
 4.創(chuàng)建識(shí)別器,3個(gè)參數(shù)

 ofType:識(shí)別類型
 CIDetectorTypeFace 面部識(shí)別
 CIDetectorTypeText 文本識(shí)別
 CIDetectorTypeQRCode 條碼識(shí)別
 CIDetectorTypeRectangle 矩形識(shí)別

 context:上下文,默認(rèn)傳nil

 options:識(shí)別精度
 CIDetectorAccuracyLow 低精度,識(shí)別速度快
 CIDetectorAccuracyHigh 高精度,識(shí)別速度慢
 */
 let detector = CIDetector(ofType: CIDetectorTypeQRCode, context: nil, options: options)

 /**
 5.獲取識(shí)別結(jié)果,2個(gè)參數(shù)

 in:需要識(shí)別的圖片

 options:需要識(shí)別的特征
 CIDetectorMinFeatureSize: 指定最小尺寸的檢測(cè)器,小于這個(gè)尺寸的特征將不識(shí)別,CIDetectorTypeFace(0.01 ~ 0.50),CIDetectorTypeText(0.00 ~ 1.00),CIDetectorTypeRectangle(0.00 ~ 1.00)
 CIDetectorTracking: 是否開(kāi)啟面部追蹤 TRUE 或 FALSE
 CIDetectorMaxFeatureCount: 設(shè)置返回矩形特征的最多個(gè)數(shù) 1 ~ 256 默認(rèn)值為1
 CIDetectorNumberOfAngles: 設(shè)置角度的個(gè)數(shù) 1, 3, 5, 7, 9, 11
 CIDetectorImageOrientation: 識(shí)別方向
 CIDetectorEyeBlink: 眨眼特征
 CIDetectorSmile: 笑臉特征
 CIDetectorFocalLength: 每幀焦距
 CIDetectorAspectRatio: 矩形寬高比
 CIDetectorReturnSubFeatures: 文本檢測(cè)器是否應(yīng)該檢測(cè)子特征,默認(rèn)值是否
 */
 let features = detector?.features(in: ciimage, options: nil)

 // 遍歷出二維碼
 for item in features! where item.isKind(of: CIQRCodeFeature.self) {
 print((item as! CIQRCodeFeature).messageString ?? "")
 }
 }

Demo地址 https://github.com/cdcyd/CCQRCode (本地下載)

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI