@@ -105,36 +105,36 @@ Camera:为各个子库提供相机预览分析的核心库
105105 ```gradle
106106
107107 //公共库 (*必须)
108- implementation 'com.github.jenly1314.MLKit:mlkit-common:2.2.1 '
108+ implementation 'com.github.jenly1314.MLKit:mlkit-common:2.3.0 '
109109
110110 //--------------------------
111111
112112 //条码识别 (可选)
113- implementation 'com.github.jenly1314.MLKit:mlkit-barcode-scanning:2.2.1 '
113+ implementation 'com.github.jenly1314.MLKit:mlkit-barcode-scanning:2.3.0 '
114114
115115 //人脸检测 (可选)
116- implementation 'com.github.jenly1314.MLKit:mlkit-face-detection:2.2.1 '
116+ implementation 'com.github.jenly1314.MLKit:mlkit-face-detection:2.3.0 '
117117
118118 //人脸网格检测 (可选)
119- implementation 'com.github.jenly1314.MLKit:mlkit-face-mesh-detection:2.2.1 '
119+ implementation 'com.github.jenly1314.MLKit:mlkit-face-mesh-detection:2.3.0 '
120120
121121 //图像标签 (可选)
122- implementation 'com.github.jenly1314.MLKit:mlkit-image-labeling:2.2.1 '
122+ implementation 'com.github.jenly1314.MLKit:mlkit-image-labeling:2.3.0 '
123123
124124 //对象检测 (可选)
125- implementation 'com.github.jenly1314.MLKit:mlkit-object-detection:2.2.1 '
125+ implementation 'com.github.jenly1314.MLKit:mlkit-object-detection:2.3.0 '
126126
127127 //姿势检测 (可选)
128- implementation 'com.github.jenly1314.MLKit:mlkit-pose-detection:2.2.1 '
128+ implementation 'com.github.jenly1314.MLKit:mlkit-pose-detection:2.3.0 '
129129
130130 //姿势检测精确版 (可选)
131- implementation 'com.github.jenly1314.MLKit:mlkit-pose-detection-accurate:2.2.1 '
131+ implementation 'com.github.jenly1314.MLKit:mlkit-pose-detection-accurate:2.3.0 '
132132
133133 //自拍分割 (可选)
134- implementation 'com.github.jenly1314.MLKit:mlkit-segmentation-selfie:2.2.1 '
134+ implementation 'com.github.jenly1314.MLKit:mlkit-segmentation-selfie:2.3.0 '
135135
136136 //文字识别 (可选)
137- implementation 'com.github.jenly1314.MLKit:mlkit-text-recognition:2.2.1 '
137+ implementation 'com.github.jenly1314.MLKit:mlkit-text-recognition:2.3.0 '
138138
139139 ```
140140
@@ -322,43 +322,20 @@ compileOptions {
322322
323323## 相关推荐
324324
325- #### [ ZXingLite] ( https://github.com/jenly1314/ZXingLite ) 基于zxing实现的扫码库,优化扫码和生成二维码/条形码功能。
326- #### [ WeChatQRCode] ( https://github.com/jenly1314/WeChatQRCode ) 基于OpenCV开源的微信二维码引擎移植的扫码识别库。
327- #### [ CameraScan] ( https://github.com/jenly1314/CameraScan ) 一个简化扫描识别流程的通用基础库。
328- #### [ ViewfinderView] ( https://github.com/jenly1314/ViewfinderView ) ViewfinderView一个取景视图:主要用于渲染扫描相关的动画效果。
325+ - [ ZXingLite] ( https://github.com/jenly1314/ZXingLite ) 基于zxing实现的扫码库,优化扫码和生成二维码/条形码功能。
326+ - [ WeChatQRCode] ( https://github.com/jenly1314/WeChatQRCode ) 基于OpenCV开源的微信二维码引擎移植的扫码识别库。
327+ - [ CameraScan] ( https://github.com/jenly1314/CameraScan ) 一个简化扫描识别流程的通用基础库。
328+ - [ ViewfinderView] ( https://github.com/jenly1314/ViewfinderView ) ViewfinderView一个取景视图:主要用于渲染扫描相关的动画效果。
329+ - [ LibYuv] ( https://github.com/jenly1314/libyuv ) 基于Google的libyuv编译封装的YUV转换工具库,主要用途是在各种YUV与RGB之间进行相互转换、裁减、旋转、缩放、镜像等。
330+ - [ LogX] ( https://github.com/jenly1314/LogX ) 一个小而美的日志记录框架;好用不解释。
329331
330332<!-- end -->
331333
332334## 版本日志
333335
334- #### v2.2.1:2024-8-8
335- * 优化细节
336-
337- #### v2.2.0:2024-7-11
338- * 更新CameraScan至v1.2.0
339- * 更新ViewfinderView至v1.2.0
340- * 更新MLKit相关依赖库版本
341-
342- #### v2.1.0:2023-12-31
343- * 更新CameraScan至v1.1.0
344- * 更新compileSdkVersion至34
345- * 更新Gradle至v8.0
346-
347- #### v2.0.1:2023-9-13
348- * 更新CameraScan至v1.0.1
349- * 更新ViewfinderView至v1.1.0
350-
351- #### v2.0.0:2023-8-13
352- * 移除相机核心库(mlkit-camera-core),改为依赖[ CameraScan] ( https://github.com/jenly1314/CameraScan )
353- * 移除mlkit-barcode-scanning中的 ** ViewfinderView** ,改为依赖[ ViewfinderView] ( https://github.com/jenly1314/ViewfinderView )
354- * 优化扫描分析过程的性能体验
355- * 更新MLKit相关依赖库版本
356-
357- #### v1.4.0:2023-4-15
358- * 优化CameraScan的缺省配置(CameraConfig相关配置)
359- * 优化ViewfinderView自定义属性(新增laserDrawableRatio)
336+ #### v2.3.0:2025-1-15
337+ * 更新CameraScan至v1.3.0
360338* 更新MLKit相关依赖库版本
361- * 更新CameraX至v1.2.2
362339
363340#### [ 查看更多版本日志] ( CHANGELOG.md )
364341
0 commit comments