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 ( 로 컬 다운로드 )총결산
이상 은 이 글 의 전체 내용 입 니 다.본 논문 의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가치 가 있 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 댓 글 을 남 겨 주 셔 서 저희 에 대한 지지 에 감 사 드 립 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Swift의 패스트 패스Objective-C를 대체하기 위해 만들어졌지만 Xcode는 Objective-C 런타임 라이브러리를 사용하기 때문에 Swift와 함께 C, C++ 및 Objective-C를 컴파일할 수 있습니다. Xcode는 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.