ios 原生sdk 識別圖片中的二維碼
UIImageView*tempImageView=(UIImageView*)gesture.view;
if(tempImageView.image){
//1. 初始化掃描器,設定設別型別和識別質量
CIDetector*detector = [CIDetector detectorOfType:CIDetectorTypeQRCode context:nil options:@{ CIDetectorAccuracy : CIDetectorAccuracyHigh }];
//2. 掃描獲取的特徵組
NSArray *features = [detector featuresInImage:[CIImage imageWithCGImage:tempImageView.image.CGImage]];
//3. 獲取掃描結果
CIQRCodeFeature *feature = [features objectAtIndex:0];
NSString *scannedResult = feature.messageString;
UIAlertView * alertView = [[UIAlertView alloc]initWithTitle:@"掃描結果" message:scannedResult delegate:nil cancelButtonTitle:@"確定" otherButtonTitles:nil, nil];
[alertView show];
}else {
UIAlertView * alertView = [[UIAlertView alloc]initWithTitle:@"掃描結果" message:@"您還沒有生成二維碼" delegate:nil cancelButtonTitle:@"確定" otherButtonTitles:nil, nil];
[alertView show];
}
相關文章
- iOS開發中識別圖中的二維碼iOS
- iOS 花式二維碼生成和二維碼識別iOS
- iOS 二維碼生成以及識別iOS
- python+opencv檢測圖片中二維碼PythonOpenCV
- Flutter - 生成二維碼與識別二維碼Flutter
- IOS 二維碼條形碼生成(原生程式碼)iOS
- halcon識別二維碼
- iOS開發-原生二維碼的掃描和生成iOS
- 前端頁面中iOS版微信長按識別二維碼的bug前端iOS
- C# 掃描識別圖片中的文字(.NET Framework)C#Framework
- 利用淺層神經網路識別圖片中的英文神經網路
- iOS 使用CIDetector掃描相簿二維碼、原生掃描iOSIDE
- 手機如何提取圖片中的文字、拍照識別文字的操作
- PHP、Python、JavaScript 識別二維碼和生成二維碼解決方案PHPPythonJavaScript
- 純web端實現二維碼識別Web
- QRCode-二維碼識別與生成
- C++用zxing識別二維碼C++
- 用zxing 識別二維碼的main函式AI函式
- WebView實現長按儲存圖片 長按識別二維碼WebView
- 二維碼知識
- 揭開二維碼背後的神秘面紗用二維碼識別 API 就夠了API
- APP下載頁二維碼支援識別微信APP
- ios--二維碼生成iOS
- iOSQRCode(二維碼)iOS
- iOS二維碼掃描iOS
- iOS開發 獲取圖片中的顏色iOS
- 網頁長按儲存及識別二維碼網頁
- 用OpenCV和Python識別二維碼和條形碼OpenCVPython
- iOS 生成二維碼/條形碼iOS
- 一種基於Android、iOS平臺的移動端VIN碼識別SDK,支援二次開發AndroidiOS
- iOS sdk打包知識iOS
- iOS中二維碼掃描iOS
- [iOS]藝術二維碼之路iOS
- BIM自動識別三維地圖-Revit模型自動識別三維地圖-IFC模型自動識別三維地圖製作地圖模型
- 開源Tesseract.js能夠識別提取圖片中文字JS
- Python OCR識別圖片驗證碼(二)Python
- 重磅 | 微信小程式開放長按識別二維碼微信小程式
- 詳解影片中動作識別模型與程式碼實踐模型