- 1.1 CoreImage的四种识别功能
- 1.2 边缘检测思路
- 1.3 用高精度边缘识别器识别特征
- 1.4 绘制边缘检测图层
- 1.5 Swift 版本
- 2.1 生成二维码
- 2.2 生成条码
- 2.3 读取二维码(二维码识别)
- 2.4 第三方框架
引言
为了提升用户体验,在OCR识别场景都将利用到边缘检测
涉及的权限
NSCameraUsageDescription
从CSDN下载Demo源码:https://download.csdn.net/download/u011018979/19260280
1、应用场景:为了提升用户体验,在OCR识别场景都将利用到边缘检测 2、原理:采用原生CoreImage框架下CIDetector可进行边缘检测,识别到边缘之后使用CAShapeLayer将边缘绘制并显示 3、原理文章:https://kunnan.blog.csdn.net/article/details/117367345
I 、矩形边缘识别
1.1 CoreImage的四种识别功能
CoreImage
下CIDetector.h
自带了四种识别功能
/* 人脸识别 */
CORE_IMAGE_EXPORT NSString* const CIDetectorTypeFace NS_AVAILABLE(10_7, 5_0);
/* 矩形边缘识别 */
CORE_IMAGE_EXPORT NSString* const CIDetectorTypeRectangle NS_AVAILABLE(10_10, 8_0);
/* 二维码识别 */
CORE_IMAGE_EXPORT NSString* const CIDetectorTypeQRCode NS_AVAILABLE(10_10, 8_0);
/* 文本识别 */
#if __OBJC2__
CORE_IMAGE_EXPORT NSString* const CIDetectorTypeText NS_AVAILABLE(10_11, 9_0);
1.2 边缘检测思路
采用原生CoreImage
框架下CIDetector
可进行边缘检测
[CIDetector detectorOfType:CIDetectorTypeRectangle context:nil options:@{CIDetectorAccuracy : CIDetectorAccuracyHigh}];
识别到边缘之后使用CAShapeLayer
将边缘绘制并显示