实例介绍
百度OCR文字识别,支持手机拍照识别,相册选择识别。网络图片识别等功能。该demo的配文博客为https://blog.csdn.net/pyfysf/article/details/86438769
【实例截图】
【核心代码】
百度OCR文字识别案例_android防止akANDsk泄漏版本
├── BaiDuOcrForAndroidPackage_upuptop
│ ├── README.md
│ ├── app
│ │ ├── app.iml
│ │ ├── build.gradle
│ │ ├── libs
│ │ │ └── ocr-sdk.jar
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ ├── androidTest
│ │ │ └── java
│ │ │ └── top
│ │ │ └── winp
│ │ │ └── ocr
│ │ │ └── baiduocrdemo
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ │ └── top
│ │ │ │ └── winp
│ │ │ │ └── ocr
│ │ │ │ └── baiduocrdemo
│ │ │ │ ├── Base64Util.java
│ │ │ │ ├── FileUtil.java
│ │ │ │ └── MainActivity.java
│ │ │ ├── jniLibs
│ │ │ │ ├── arm64-v8a
│ │ │ │ │ └── libocr-sdk.so
│ │ │ │ ├── armeabi
│ │ │ │ │ └── libocr-sdk.so
│ │ │ │ ├── armeabi-v7a
│ │ │ │ │ └── libocr-sdk.so
│ │ │ │ └── x86
│ │ │ │ └── libocr-sdk.so
│ │ │ └── res
│ │ │ ├── drawable
│ │ │ │ └── ic_launcher_background.xml
│ │ │ ├── drawable-v24
│ │ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── layout
│ │ │ │ └── activity_main.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ │ ├── ic_launcher.xml
│ │ │ │ └── ic_launcher_round.xml
│ │ │ ├── mipmap-hdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-mdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-xhdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-xxhdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-xxxhdpi
│ │ │ │ ├── ic_launcher.png
│ │ │ │ └── ic_launcher_round.png
│ │ │ └── values
│ │ │ ├── colors.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ │ └── test
│ │ └── java
│ │ └── top
│ │ └── winp
│ │ └── ocr
│ │ └── baiduocrdemo
│ │ └── ExampleUnitTest.java
│ ├── build.gradle
│ ├── gradle
│ │ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradle.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── local.properties
│ ├── ocr_ui
│ │ ├── build
│ │ │ ├── generated
│ │ │ │ ├── not_namespaced_r_class_sources
│ │ │ │ │ └── debug
│ │ │ │ │ └── generateDebugRFile
│ │ │ │ │ └── out
│ │ │ │ │ ├── android
│ │ │ │ │ │ ├── arch
│ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ │ ├── R.java
│ │ │ │ │ │ │ ├── livedata
│ │ │ │ │ │ │ │ └── core
│ │ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ │ └── viewmodel
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── coreui
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── coreutils
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── fragment
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ │ └── drawable
│ │ │ │ │ │ │ ├── R.java
│ │ │ │ │ │ │ └── animated
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ └── appcompat
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── com
│ │ │ │ │ └── baidu
│ │ │ │ │ └── ocr
│ │ │ │ │ └── ui
│ │ │ │ │ └── R.java
│ │ │ │ └── source
│ │ │ │ └── buildConfig
│ │ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ └── baidu
│ │ │ │ └── ocr
│ │ │ │ └── ui
│ │ │ │ └── BuildConfig.java
│ │ │ ├── intermediates
│ │ │ │ ├── aapt_friendly_merged_manifests
│ │ │ │ │ └── debug
│ │ │ │ │ └── processDebugManifest
│ │ │ │ │ └── aapt
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ └── output.json
│ │ │ │ ├── annotation_processor_list
│ │ │ │ │ └── debug
│ │ │ │ │ └── javaPreCompileDebug
│ │ │ │ │ └── annotationProcessors.json
│ │ │ │ ├── annotations_typedef_file
│ │ │ │ │ └── debug
│ │ │ │ │ └── extractDebugAnnotations
│ │ │ │ │ └── typedefs.txt
│ │ │ │ ├── annotations_zip
│ │ │ │ │ └── debug
│ │ │ │ │ └── extractDebugAnnotations
│ │ │ │ │ └── annotations.zip
│ │ │ │ ├── incremental
│ │ │ │ │ ├── debug-mergeJavaRes
│ │ │ │ │ │ └── merge-state
│ │ │ │ │ ├── debug-mergeJniLibs
│ │ │ │ │ │ └── merge-state
│ │ │ │ │ ├── mergeDebugJniLibFolders
│ │ │ │ │ │ └── merger.xml
│ │ │ │ │ ├── mergeDebugShaders
│ │ │ │ │ │ └── merger.xml
│ │ │ │ │ ├── packageDebugAssets
│ │ │ │ │ │ └── merger.xml
│ │ │ │ │ └── packageDebugResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ └── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── javac
│ │ │ │ │ └── debug
│ │ │ │ │ └── compileDebugJavaWithJavac
│ │ │ │ │ └── classes
│ │ │ │ │ ├── android
│ │ │ │ │ │ ├── arch
│ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ │ ├── livedata
│ │ │ │ │ │ │ │ └── core
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ └── viewmodel
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── coreui
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── coreutils
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── fragment
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ │ └── drawable
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ │ └── animated
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ └── appcompat
│ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── baidu
│ │ │ │ │ ├── idcardquality
│ │ │ │ │ │ └── IDcardQualityProcess.class
│ │ │ │ │ └── ocr
│ │ │ │ │ └── ui
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── R$anim.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── camera
│ │ │ │ │ │ ├── Camera1Control$1$1.class
│ │ │ │ │ │ ├── Camera1Control$1.class
│ │ │ │ │ │ ├── Camera1Control$2$1.class
│ │ │ │ │ │ ├── Camera1Control$2.class
│ │ │ │ │ │ ├── Camera1Control$3.class
│ │ │ │ │ │ ├── Camera1Control$4$1.class
│ │ │ │ │ │ ├── Camera1Control$4.class
│ │ │ │ │ │ ├── Camera1Control$5.class
│ │ │ │ │ │ ├── Camera1Control$PreviewView.class
│ │ │ │ │ │ ├── Camera1Control.class
│ │ │ │ │ │ ├── Camera2Control$1.class
│ │ │ │ │ │ ├── Camera2Control$2.class
│ │ │ │ │ │ ├── Camera2Control$3.class
│ │ │ │ │ │ ├── Camera2Control$4.class
│ │ │ │ │ │ ├── Camera2Control$5.class
│ │ │ │ │ │ ├── Camera2Control$6.class
│ │ │ │ │ │ ├── Camera2Control$7.class
│ │ │ │ │ │ ├── Camera2Control.class
│ │ │ │ │ │ ├── CameraActivity$1.class
│ │ │ │ │ │ ├── CameraActivity$10.class
│ │ │ │ │ │ ├── CameraActivity$11.class
│ │ │ │ │ │ ├── CameraActivity$12.class
│ │ │ │ │ │ ├── CameraActivity$13.class
│ │ │ │ │ │ ├── CameraActivity$2.class
│ │ │ │ │ │ ├── CameraActivity$3.class
│ │ │ │ │ │ ├── CameraActivity$4.class
│ │ │ │ │ │ ├── CameraActivity$5.class
│ │ │ │ │ │ ├── CameraActivity$6$1.class
│ │ │ │ │ │ ├── CameraActivity$6.class
│ │ │ │ │ │ ├── CameraActivity$7$1.class
│ │ │ │ │ │ ├── CameraActivity$7.class
│ │ │ │ │ │ ├── CameraActivity$8.class
│ │ │ │ │ │ ├── CameraActivity$9.class
│ │ │ │ │ │ ├── CameraActivity.class
│ │ │ │ │ │ ├── CameraNativeHelper$1.class
│ │ │ │ │ │ ├── CameraNativeHelper$CameraNativeInitCallback.class
│ │ │ │ │ │ ├── CameraNativeHelper.class
│ │ │ │ │ │ ├── CameraThreadPool$1.class
│ │ │ │ │ │ ├── CameraThreadPool.class
│ │ │ │ │ │ ├── CameraView$1.class
│ │ │ │ │ │ ├── CameraView$2.class
│ │ │ │ │ │ ├── CameraView$3.class
│ │ │ │ │ │ ├── CameraView$CameraViewTakePictureCallback$1.class
│ │ │ │ │ │ ├── CameraView$CameraViewTakePictureCallback.class
│ │ │ │ │ │ ├── CameraView$OnTakePictureCallback.class
│ │ │ │ │ │ ├── CameraView$Orientation.class
│ │ │ │ │ │ ├── CameraView.class
│ │ │ │ │ │ ├── ICameraControl$FlashMode.class
│ │ │ │ │ │ ├── ICameraControl$OnDetectPictureCallback.class
│ │ │ │ │ │ ├── ICameraControl$OnTakePictureCallback.class
│ │ │ │ │ │ ├── ICameraControl.class
│ │ │ │ │ │ ├── MaskView$MaskType.class
│ │ │ │ │ │ ├── MaskView.class
│ │ │ │ │ │ ├── OCRCameraLayout.class
│ │ │ │ │ │ ├── OCRFrameLayout.class
│ │ │ │ │ │ └── PermissionCallback.class
│ │ │ │ │ ├── crop
│ │ │ │ │ │ ├── CropView$1.class
│ │ │ │ │ │ ├── CropView$2.class
│ │ │ │ │ │ ├── CropView.class
│ │ │ │ │ │ ├── FrameOverlayView$1.class
│ │ │ │ │ │ ├── FrameOverlayView$OnFrameChangeListener.class
│ │ │ │ │ │ └── FrameOverlayView.class
│ │ │ │ │ └── util
│ │ │ │ │ ├── DimensionUtil.class
│ │ │ │ │ └── ImageUtil.class
│ │ │ │ ├── jniLibs
│ │ │ │ │ └── debug
│ │ │ │ │ ├── arm64-v8a
│ │ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ │ └── libidl_license.so
│ │ │ │ │ ├── armeabi
│ │ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ │ └── libidl_license.so
│ │ │ │ │ ├── armeabi-v7a
│ │ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ │ └── libidl_license.so
│ │ │ │ │ └── x86
│ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ └── libidl_license.so
│ │ │ │ ├── library_and_local_jars_jni
│ │ │ │ │ └── debug
│ │ │ │ │ ├── arm64-v8a
│ │ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ │ └── libidl_license.so
│ │ │ │ │ ├── armeabi
│ │ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ │ └── libidl_license.so
│ │ │ │ │ ├── armeabi-v7a
│ │ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ │ └── libidl_license.so
│ │ │ │ │ └── x86
│ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ └── libidl_license.so
│ │ │ │ ├── library_assets
│ │ │ │ │ └── debug
│ │ │ │ │ └── packageDebugAssets
│ │ │ │ │ └── out
│ │ │ │ │ └── models
│ │ │ │ │ ├── integrity_model_secret.bin
│ │ │ │ │ └── quality_model_secret.bin
│ │ │ │ ├── merged_manifests
│ │ │ │ │ └── debug
│ │ │ │ │ └── processDebugManifest
│ │ │ │ │ └── merged
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ └── output.json
│ │ │ │ ├── packaged-classes
│ │ │ │ │ └── debug
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ └── libs
│ │ │ │ │ └── license.jar
│ │ │ │ ├── packaged_res
│ │ │ │ │ └── debug
│ │ │ │ │ ├── drawable-xhdpi-v4
│ │ │ │ │ │ ├── bd_ocr_cancel.png
│ │ │ │ │ │ ├── bd_ocr_close.png
│ │ │ │ │ │ ├── bd_ocr_confirm.png
│ │ │ │ │ │ ├── bd_ocr_gallery.png
│ │ │ │ │ │ ├── bd_ocr_hint_align_bank_card.png
│ │ │ │ │ │ ├── bd_ocr_hint_align_id_card.png
│ │ │ │ │ │ ├── bd_ocr_hint_align_id_card_back.png
│ │ │ │ │ │ ├── bd_ocr_id_card_locator_back.png
│ │ │ │ │ │ ├── bd_ocr_id_card_locator_front.png
│ │ │ │ │ │ ├── bd_ocr_light_off.png
│ │ │ │ │ │ ├── bd_ocr_light_on.png
│ │ │ │ │ │ ├── bd_ocr_passport_locator.png
│ │ │ │ │ │ ├── bd_ocr_reset.png
│ │ │ │ │ │ ├── bd_ocr_rotate.png
│ │ │ │ │ │ ├── bd_ocr_round_corner.xml
│ │ │ │ │ │ ├── bd_ocr_take_photo_highlight.png
│ │ │ │ │ │ ├── bd_ocr_take_photo_normal.png
│ │ │ │ │ │ └── bd_ocr_take_photo_selector.xml
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── bd_ocr_activity_camera.xml
│ │ │ │ │ │ ├── bd_ocr_confirm_result.xml
│ │ │ │ │ │ ├── bd_ocr_crop.xml
│ │ │ │ │ │ └── bd_ocr_take_picture.xml
│ │ │ │ │ ├── mipmap-hdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-mdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xhdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xxhdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xxxhdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ └── values
│ │ │ │ │ └── values.xml
│ │ │ │ ├── res
│ │ │ │ │ └── symbol-table-with-package
│ │ │ │ │ └── debug
│ │ │ │ │ └── package-aware-r.txt
│ │ │ │ ├── symbols
│ │ │ │ │ └── debug
│ │ │ │ │ └── R.txt
│ │ │ │ └── transforms
│ │ │ │ ├── mergeJavaRes
│ │ │ │ │ └── debug
│ │ │ │ │ ├── 0.jar
│ │ │ │ │ └── __content__.json
│ │ │ │ └── mergeJniLibs
│ │ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ │ └── lib
│ │ │ │ │ ├── arm64-v8a
│ │ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ │ └── libidl_license.so
│ │ │ │ │ ├── armeabi
│ │ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ │ └── libidl_license.so
│ │ │ │ │ ├── armeabi-v7a
│ │ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ │ └── libidl_license.so
│ │ │ │ │ └── x86
│ │ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ │ └── libidl_license.so
│ │ │ │ └── __content__.json
│ │ │ └── outputs
│ │ │ ├── aar
│ │ │ │ └── ocr_ui-debug.aar
│ │ │ └── logs
│ │ │ └── manifest-merger-debug-report.txt
│ │ ├── build.gradle
│ │ ├── libs
│ │ │ └── license.jar
│ │ ├── ocr_ui.iml
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ └── main
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ │ └── models
│ │ │ ├── integrity_model_secret.bin
│ │ │ └── quality_model_secret.bin
│ │ ├── java
│ │ │ └── com
│ │ │ └── baidu
│ │ │ ├── idcardquality
│ │ │ │ └── IDcardQualityProcess.java
│ │ │ └── ocr
│ │ │ └── ui
│ │ │ ├── camera
│ │ │ │ ├── Camera1Control.java
│ │ │ │ ├── Camera2Control.java
│ │ │ │ ├── CameraActivity.java
│ │ │ │ ├── CameraNativeHelper.java
│ │ │ │ ├── CameraThreadPool.java
│ │ │ │ ├── CameraView.java
│ │ │ │ ├── ICameraControl.java
│ │ │ │ ├── MaskView.java
│ │ │ │ ├── OCRCameraLayout.java
│ │ │ │ ├── OCRFrameLayout.java
│ │ │ │ └── PermissionCallback.java
│ │ │ ├── crop
│ │ │ │ ├── CropView.java
│ │ │ │ └── FrameOverlayView.java
│ │ │ └── util
│ │ │ ├── DimensionUtil.java
│ │ │ └── ImageUtil.java
│ │ ├── jniLibs
│ │ │ ├── arm64-v8a
│ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ └── libidl_license.so
│ │ │ ├── armeabi
│ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ └── libidl_license.so
│ │ │ ├── armeabi-v7a
│ │ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ │ └── libidl_license.so
│ │ │ └── x86
│ │ │ ├── libidcard_quality.1.1.1.so
│ │ │ └── libidl_license.so
│ │ └── res
│ │ ├── drawable-xhdpi
│ │ │ ├── bd_ocr_cancel.png
│ │ │ ├── bd_ocr_close.png
│ │ │ ├── bd_ocr_confirm.png
│ │ │ ├── bd_ocr_gallery.png
│ │ │ ├── bd_ocr_hint_align_bank_card.png
│ │ │ ├── bd_ocr_hint_align_id_card.png
│ │ │ ├── bd_ocr_hint_align_id_card_back.png
│ │ │ ├── bd_ocr_id_card_locator_back.png
│ │ │ ├── bd_ocr_id_card_locator_front.png
│ │ │ ├── bd_ocr_light_off.png
│ │ │ ├── bd_ocr_light_on.png
│ │ │ ├── bd_ocr_passport_locator.png
│ │ │ ├── bd_ocr_reset.png
│ │ │ ├── bd_ocr_rotate.png
│ │ │ ├── bd_ocr_round_corner.xml
│ │ │ ├── bd_ocr_take_photo_highlight.png
│ │ │ ├── bd_ocr_take_photo_normal.png
│ │ │ └── bd_ocr_take_photo_selector.xml
│ │ ├── layout
│ │ │ ├── bd_ocr_activity_camera.xml
│ │ │ ├── bd_ocr_confirm_result.xml
│ │ │ ├── bd_ocr_crop.xml
│ │ │ └── bd_ocr_take_picture.xml
│ │ ├── mipmap-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-xhdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-xxhdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-xxxhdpi
│ │ │ └── ic_launcher.png
│ │ └── values
│ │ ├── bd_ocr_dimensions.xml
│ │ ├── bd_ocr_widgets.xml
│ │ ├── colors.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── settings.gradle
└── 下载必看_upuptop.txt
208 directories, 365 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论