iOS 개발 튜 토리 얼 의 식별 이미지 에서 QR 코드 기능 의 실현

3982 단어 ios식별QR 코드
머리말
iOS 의 CoreImage Api 에 CIDetector 클래스 가 있 는데 Detector 의 중국어 번역 에 탐측 기 라 는 뜻 이 있다 면 CIDetector 는 어떤 것 을 하 는 것 일 까?
가능 합 니 다:
CIDetector TypeFace 얼굴 인식CIDetector TypeText 텍스트 인식CIDetector TypeQRcode 바코드 인식CIDetector TypeRectangle 사각형 식별이 종 류 는 사실 매우 간단 합 니 다.헤더 파일 코드 가 매우 적 습 니 다.다음은 설명 을 보 겠 습 니 다.

open class CIDetector : NSObject {
 //      
 public init?(ofType type: String, context: CIContext?, options: [String : Any]? = nil)
 //       
 open func features(in image: CIImage) -> [CIFeature]
 open func features(in image: CIImage, options: [String : Any]? = nil) -> [CIFeature]
}
//     
public let CIDetectorTypeFace: String //     
public let CIDetectorTypeRectangle: String //     
public let CIDetectorTypeQRCode: String //     
public let CIDetectorTypeText: String //     
//        options       
public let CIDetectorAccuracy: String //     
public let CIDetectorAccuracyLow: String //    ,     
public let CIDetectorAccuracyHigh: String //    ,     
public let CIDetectorTracking: String //         
public let CIDetectorMinFeatureSize: String //           ,             ,CIDetectorTypeFace(0.01 ~ 0.50),CIDetectorTypeText(0.00 ~ 1.00),CIDetectorTypeRectangle(0.00 ~ 1.00)
public let CIDetectorMaxFeatureCount: String //               1 ~ 256     1
public let CIDetectorNumberOfAngles: String //         1, 3, 5, 7, 9, 11
public let CIDetectorImageOrientation: String //     
public let CIDetectorEyeBlink: String //     
public let CIDetectorSmile: String //     
public let CIDetectorFocalLength: String //     
public let CIDetectorAspectRatio: String //      
public let CIDetectorReturnSubFeatures: String //               ,     
다음은 QR 코드 인식 인 스 턴 스 코드 입 니 다.

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.    
 let options = [CIDetectorAccuracy: CIDetectorAccuracyHigh]

 /**
 4.     ,3   

 ofType:    
 CIDetectorTypeFace     
 CIDetectorTypeText     
 CIDetectorTypeQRCode     
 CIDetectorTypeRectangle     

 context:   ,   nil

 options:    
 CIDetectorAccuracyLow    ,     
 CIDetectorAccuracyHigh    ,     
 */
 let detector = CIDetector(ofType: CIDetectorTypeQRCode, context: nil, options: options)

 /**
 5.      ,2   

 in:       

 options:       
 CIDetectorMinFeatureSize:           ,             ,CIDetectorTypeFace(0.01 ~ 0.50),CIDetectorTypeText(0.00 ~ 1.00),CIDetectorTypeRectangle(0.00 ~ 1.00)
 CIDetectorTracking:          TRUE   FALSE
 CIDetectorMaxFeatureCount:               1 ~ 256     1
 CIDetectorNumberOfAngles:         1, 3, 5, 7, 9, 11
 CIDetectorImageOrientation:     
 CIDetectorEyeBlink:     
 CIDetectorSmile:     
 CIDetectorFocalLength:     
 CIDetectorAspectRatio:      
 CIDetectorReturnSubFeatures:               ,     
 */
 let features = detector?.features(in: ciimage, options: nil)

 //       
 for item in features! where item.isKind(of: CIQRCodeFeature.self) {
 print((item as! CIQRCodeFeature).messageString ?? "")
 }
 }
데모 주소https://github.com/cdcyd/CCQRCode ( 로 컬 다운로드
총결산
이상 은 이 글 의 전체 내용 입 니 다.본 논문 의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가치 가 있 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 댓 글 을 남 겨 주 셔 서 저희 에 대한 지지 에 감 사 드 립 니 다.

좋은 웹페이지 즐겨찾기