├── OCR.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── fancheng.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── fancheng.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── OCR ├── AppDelegate.h ├── AppDelegate.mm ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── IdCardBack.imageset │ │ ├── Contents.json │ │ ├── IdCardBack.png │ │ ├── IdCardBack@2x.png │ │ └── IdCardBack@3x.png │ ├── Idcard.imageset │ │ ├── Contents.json │ │ ├── Idcard.png │ │ ├── Idcard@2x.png │ │ └── Idcard@3x.png │ ├── camera.imageset │ │ ├── Contents.json │ │ ├── camera.png │ │ ├── camera@2x.png │ │ └── camera@3x.png │ ├── cameraBg.imageset │ │ ├── Contents.json │ │ ├── cameraBg.png │ │ ├── cameraBg@2x.png │ │ └── cameraBg@3x.png │ ├── customerScan.imageset │ │ ├── Contents.json │ │ ├── customerScan.png │ │ ├── customerScan@2x.png │ │ └── customerScan@3x.png │ ├── flash_off.imageset │ │ ├── Contents.json │ │ ├── listing_flash_off@2x.png │ │ └── listing_flash_off@3x.png │ ├── flash_on.imageset │ │ ├── Contents.json │ │ ├── listing_flash_on@2x.png │ │ └── listing_flash_on@3x.png │ ├── idcard_first_head_5.imageset │ │ ├── Contents.json │ │ └── idcard_first_head_5.png │ ├── idcard_last_head_5.imageset │ │ ├── Contents.json │ │ └── idcard_last_head_5.png │ └── listing_camera_lens.imageset │ │ ├── Contents.json │ │ ├── listing_camera_lens@2x.png │ │ └── listing_camera_lens@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Controller │ ├── BankCardController.h │ ├── BankCardController.m │ ├── DrivingLicenceController.h │ ├── DrivingLicenceController.m │ ├── IDCardController.h │ └── IDCardController.m ├── Info.plist ├── Lib │ ├── DriveLicense │ │ ├── JZCameraViewController.h │ │ └── JZCameraViewController.mm │ ├── OCR.h │ ├── SBankCard │ │ ├── BCameraViewController.h │ │ ├── BCameraViewController.mm │ │ ├── NSAttributedString+CC.h │ │ ├── NSAttributedString+CC.m │ │ ├── ShowResultView.h │ │ └── ShowResultView.m │ ├── SIDCard │ │ └── IDCardEngine │ │ │ ├── CameraDrawView.h │ │ │ ├── CameraDrawView.m │ │ │ ├── CameraViewController.h │ │ │ ├── CameraViewController.mm │ │ │ ├── HPLCardModel.h │ │ │ ├── HPLCardModel.m │ │ │ ├── UIViewExt.h │ │ │ ├── UIViewExt.m │ │ │ ├── UKImage.h │ │ │ ├── UKImage.m │ │ │ ├── YMLine.h │ │ │ ├── libCommon.h │ │ │ └── libOcrLib.a │ └── YMIDCardEngine.h ├── ViewController.h ├── ViewController.m └── main.m ├── OCRImage ├── 1.png ├── 2.png ├── 3.png ├── IMG_5469.PNG ├── IMG_5470.PNG └── IMG_5471.PNG ├── OCRTests ├── Info.plist └── OCRTests.m ├── OCRUITests ├── Info.plist └── OCRUITests.m └── README.md /OCR.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OCR.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OCR.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /OCR.xcodeproj/project.xcworkspace/xcuserdata/fancheng.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR.xcodeproj/project.xcworkspace/xcuserdata/fancheng.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /OCR.xcodeproj/xcuserdata/fancheng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR.xcodeproj/xcuserdata/fancheng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /OCR.xcodeproj/xcuserdata/fancheng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR.xcodeproj/xcuserdata/fancheng.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /OCR/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/AppDelegate.h -------------------------------------------------------------------------------- /OCR/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/AppDelegate.mm -------------------------------------------------------------------------------- /OCR/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/IdCardBack.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/IdCardBack.imageset/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/IdCardBack.imageset/IdCardBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/IdCardBack.imageset/IdCardBack.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/IdCardBack.imageset/IdCardBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/IdCardBack.imageset/IdCardBack@2x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/IdCardBack.imageset/IdCardBack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/IdCardBack.imageset/IdCardBack@3x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/Idcard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/Idcard.imageset/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/Idcard.imageset/Idcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/Idcard.imageset/Idcard.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/Idcard.imageset/Idcard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/Idcard.imageset/Idcard@2x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/Idcard.imageset/Idcard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/Idcard.imageset/Idcard@3x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/camera.imageset/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/camera.imageset/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/camera.imageset/camera.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/camera.imageset/camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/camera.imageset/camera@2x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/camera.imageset/camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/camera.imageset/camera@3x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/cameraBg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/cameraBg.imageset/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/cameraBg.imageset/cameraBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/cameraBg.imageset/cameraBg.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/cameraBg.imageset/cameraBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/cameraBg.imageset/cameraBg@2x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/cameraBg.imageset/cameraBg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/cameraBg.imageset/cameraBg@3x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/customerScan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/customerScan.imageset/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/customerScan.imageset/customerScan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/customerScan.imageset/customerScan.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/customerScan.imageset/customerScan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/customerScan.imageset/customerScan@2x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/customerScan.imageset/customerScan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/customerScan.imageset/customerScan@3x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/flash_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/flash_off.imageset/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/flash_off.imageset/listing_flash_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/flash_off.imageset/listing_flash_off@2x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/flash_off.imageset/listing_flash_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/flash_off.imageset/listing_flash_off@3x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/flash_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/flash_on.imageset/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/flash_on.imageset/listing_flash_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/flash_on.imageset/listing_flash_on@2x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/flash_on.imageset/listing_flash_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/flash_on.imageset/listing_flash_on@3x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/idcard_first_head_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/idcard_first_head_5.imageset/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/idcard_first_head_5.imageset/idcard_first_head_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/idcard_first_head_5.imageset/idcard_first_head_5.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/idcard_last_head_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/idcard_last_head_5.imageset/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/idcard_last_head_5.imageset/idcard_last_head_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/idcard_last_head_5.imageset/idcard_last_head_5.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/listing_camera_lens.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/listing_camera_lens.imageset/Contents.json -------------------------------------------------------------------------------- /OCR/Assets.xcassets/listing_camera_lens.imageset/listing_camera_lens@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/listing_camera_lens.imageset/listing_camera_lens@2x.png -------------------------------------------------------------------------------- /OCR/Assets.xcassets/listing_camera_lens.imageset/listing_camera_lens@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Assets.xcassets/listing_camera_lens.imageset/listing_camera_lens@3x.png -------------------------------------------------------------------------------- /OCR/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /OCR/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /OCR/Controller/BankCardController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Controller/BankCardController.h -------------------------------------------------------------------------------- /OCR/Controller/BankCardController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Controller/BankCardController.m -------------------------------------------------------------------------------- /OCR/Controller/DrivingLicenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Controller/DrivingLicenceController.h -------------------------------------------------------------------------------- /OCR/Controller/DrivingLicenceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Controller/DrivingLicenceController.m -------------------------------------------------------------------------------- /OCR/Controller/IDCardController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Controller/IDCardController.h -------------------------------------------------------------------------------- /OCR/Controller/IDCardController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Controller/IDCardController.m -------------------------------------------------------------------------------- /OCR/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Info.plist -------------------------------------------------------------------------------- /OCR/Lib/DriveLicense/JZCameraViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/DriveLicense/JZCameraViewController.h -------------------------------------------------------------------------------- /OCR/Lib/DriveLicense/JZCameraViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/DriveLicense/JZCameraViewController.mm -------------------------------------------------------------------------------- /OCR/Lib/OCR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/OCR.h -------------------------------------------------------------------------------- /OCR/Lib/SBankCard/BCameraViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SBankCard/BCameraViewController.h -------------------------------------------------------------------------------- /OCR/Lib/SBankCard/BCameraViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SBankCard/BCameraViewController.mm -------------------------------------------------------------------------------- /OCR/Lib/SBankCard/NSAttributedString+CC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SBankCard/NSAttributedString+CC.h -------------------------------------------------------------------------------- /OCR/Lib/SBankCard/NSAttributedString+CC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SBankCard/NSAttributedString+CC.m -------------------------------------------------------------------------------- /OCR/Lib/SBankCard/ShowResultView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SBankCard/ShowResultView.h -------------------------------------------------------------------------------- /OCR/Lib/SBankCard/ShowResultView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SBankCard/ShowResultView.m -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/CameraDrawView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/CameraDrawView.h -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/CameraDrawView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/CameraDrawView.m -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/CameraViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/CameraViewController.h -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/CameraViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/CameraViewController.mm -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/HPLCardModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/HPLCardModel.h -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/HPLCardModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/HPLCardModel.m -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/UIViewExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/UIViewExt.h -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/UIViewExt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/UIViewExt.m -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/UKImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/UKImage.h -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/UKImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/UKImage.m -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/YMLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/YMLine.h -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/libCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/libCommon.h -------------------------------------------------------------------------------- /OCR/Lib/SIDCard/IDCardEngine/libOcrLib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/SIDCard/IDCardEngine/libOcrLib.a -------------------------------------------------------------------------------- /OCR/Lib/YMIDCardEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/Lib/YMIDCardEngine.h -------------------------------------------------------------------------------- /OCR/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/ViewController.h -------------------------------------------------------------------------------- /OCR/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/ViewController.m -------------------------------------------------------------------------------- /OCR/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCR/main.m -------------------------------------------------------------------------------- /OCRImage/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCRImage/1.png -------------------------------------------------------------------------------- /OCRImage/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCRImage/2.png -------------------------------------------------------------------------------- /OCRImage/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCRImage/3.png -------------------------------------------------------------------------------- /OCRImage/IMG_5469.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCRImage/IMG_5469.PNG -------------------------------------------------------------------------------- /OCRImage/IMG_5470.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCRImage/IMG_5470.PNG -------------------------------------------------------------------------------- /OCRImage/IMG_5471.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCRImage/IMG_5471.PNG -------------------------------------------------------------------------------- /OCRTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCRTests/Info.plist -------------------------------------------------------------------------------- /OCRTests/OCRTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCRTests/OCRTests.m -------------------------------------------------------------------------------- /OCRUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCRUITests/Info.plist -------------------------------------------------------------------------------- /OCRUITests/OCRUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/OCRUITests/OCRUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-Love/OcrScan/HEAD/README.md --------------------------------------------------------------------------------