├── .gitattributes ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── PP_shitu ├── android │ ├── app │ │ └── cxx │ │ │ └── pp_shitu │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── app.iml │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── pp_shitu │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── wu_ling.jpg │ │ │ │ │ └── labels │ │ │ │ │ │ └── label.txt │ │ │ │ ├── cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Native.cc │ │ │ │ │ ├── Native.h │ │ │ │ │ ├── ObjectDetector.cc │ │ │ │ │ ├── ObjectDetector.h │ │ │ │ │ ├── Pipeline.cc │ │ │ │ │ ├── Pipeline.h │ │ │ │ │ ├── Recognition.cc │ │ │ │ │ ├── Recognition.h │ │ │ │ │ ├── Utils.cc │ │ │ │ │ └── Utils.h │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ └── pp_shitu │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── Native.java │ │ │ │ │ │ └── SettingsActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── btn_switch_default.png │ │ │ │ │ └── btn_switch_pressed.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── btn_settings.xml │ │ │ │ │ ├── btn_settings_default.xml │ │ │ │ │ ├── btn_settings_pressed.xml │ │ │ │ │ ├── btn_shutter.xml │ │ │ │ │ ├── btn_shutter_default.xml │ │ │ │ │ ├── btn_shutter_pressed.xml │ │ │ │ │ ├── btn_switch.xml │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout-land │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── menu │ │ │ │ │ └── menu_action_options.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 │ │ │ │ │ ├── arrays.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── settings.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── paddle │ │ │ │ └── lite │ │ │ │ └── demo │ │ │ │ └── pp_shitu │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── local.properties │ │ │ └── settings.gradle │ └── shell │ │ └── cxx │ │ └── shitu │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── run.sh │ │ └── src │ │ ├── object_detector.cc │ │ ├── object_detector.h │ │ ├── pipeline.cc │ │ ├── pipeline.h │ │ ├── recognition.cc │ │ ├── recognition.h │ │ ├── utils.cc │ │ └── utils.h ├── assets │ ├── download.sh │ ├── images │ │ ├── nike.jpg │ │ ├── pyramid.jpg │ │ ├── tokyo_tower.jpg │ │ ├── wu_ling.jpg │ │ └── yuan_qi.jpg │ └── labels │ │ └── label.txt └── ios │ └── PPshitu │ ├── PPshitu.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── chenjiao04.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── majianping02.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── chenjiao04.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── majianping02.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── README.md │ ├── prepare.sh │ └── shitu │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.mm │ ├── main.m │ ├── src │ ├── object_detector.cc │ ├── object_detector.h │ ├── pipeline.cc │ ├── pipeline.h │ ├── recognition.cc │ ├── recognition.h │ ├── utils.cc │ └── utils.h │ └── timer.h ├── README.md ├── docs_img ├── image_classify │ ├── app_run_res.jpg │ ├── armlinux_image_classification.jpg │ └── ios_app_run.jpg ├── object_detection │ ├── app_run_res.jpg │ └── ios_app_run.jpg └── ocr │ └── ppocr_app_run.jpg ├── face_detection ├── android │ ├── app │ │ └── cxx │ │ │ └── face_detection │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── app.iml │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── face_detection │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── face.jpg │ │ │ │ │ └── labels │ │ │ │ │ │ └── labels.txt │ │ │ │ ├── cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Native.cc │ │ │ │ │ ├── Native.h │ │ │ │ │ ├── Pipeline.cc │ │ │ │ │ ├── Pipeline.h │ │ │ │ │ ├── Utils.cc │ │ │ │ │ └── Utils.h │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ └── face_detection │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── Native.java │ │ │ │ │ │ └── SettingsActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── btn_switch_default.png │ │ │ │ │ └── btn_switch_pressed.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── btn_settings.xml │ │ │ │ │ ├── btn_settings_default.xml │ │ │ │ │ ├── btn_settings_pressed.xml │ │ │ │ │ ├── btn_shutter.xml │ │ │ │ │ ├── btn_shutter_default.xml │ │ │ │ │ ├── btn_shutter_pressed.xml │ │ │ │ │ ├── btn_switch.xml │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout-land │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── menu │ │ │ │ │ └── menu_action_options.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 │ │ │ │ │ ├── arrays.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── settings.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── paddle │ │ │ │ └── lite │ │ │ │ └── demo │ │ │ │ └── face_detection │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ └── shell │ │ └── cxx │ │ └── face_detection │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── face_detection.cc │ │ └── run.sh ├── assets │ ├── download.sh │ ├── images │ │ └── face.jpg │ └── labels │ │ └── labels.txt └── ios │ └── face_detection │ ├── README.md │ ├── face_detection.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── chenjiao04.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── liuxiaowei12.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── face_detection.xcscheme │ └── xcuserdata │ │ ├── chenjiao04.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── liuxiaowei12.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── face_detection │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.mm │ ├── main.m │ └── timer.h │ └── prepare.sh ├── face_keypoints_detection ├── android │ ├── app │ │ └── cxx │ │ │ └── face_keypoints_detection │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── app.iml │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── face_keypoints_detection │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── FaceProcess.cc │ │ │ │ │ ├── FaceProcess.h │ │ │ │ │ ├── Native.cc │ │ │ │ │ ├── Native.h │ │ │ │ │ ├── Pipeline.cc │ │ │ │ │ ├── Pipeline.h │ │ │ │ │ ├── Utils.cc │ │ │ │ │ └── Utils.h │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ ├── CameraSurfaceView.java │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ └── face_keypoints_detection │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── Native.java │ │ │ │ │ │ └── SettingsActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── btn_switch_default.png │ │ │ │ │ └── btn_switch_pressed.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── btn_settings.xml │ │ │ │ │ ├── btn_settings_default.xml │ │ │ │ │ ├── btn_settings_pressed.xml │ │ │ │ │ ├── btn_shutter.xml │ │ │ │ │ ├── btn_shutter_default.xml │ │ │ │ │ ├── btn_shutter_pressed.xml │ │ │ │ │ ├── btn_switch.xml │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout-land │ │ │ │ │ └── activity_main.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 │ │ │ │ │ ├── arrays.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── settings.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── paddle │ │ │ │ └── lite │ │ │ │ └── demo │ │ │ │ └── face_keypoints_detection │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── face_keypoints_detection_demo.iml │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ └── shell │ │ └── cxx │ │ └── face_keypoints_detection │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── face_keypoints_detection.cc │ │ └── run.sh ├── assets │ ├── download.sh │ └── images │ │ └── face.jpg └── ios │ └── face_keypoints_detection │ ├── README.md │ ├── face_keypoints_detection.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── chenjiao04.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── liuxiaowei12.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── face_keypoints_detection.xcscheme │ └── xcuserdata │ │ ├── chenjiao04.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── liuxiaowei12.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── face_keypoints_detection │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.mm │ ├── main.m │ └── timer.h │ └── prepare.sh ├── human_segmentation ├── android │ ├── app │ │ ├── cxx │ │ │ └── Segmentation │ │ │ │ ├── README.md │ │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── app.iml │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ └── segmentation │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── human.jpg │ │ │ │ │ │ └── labels │ │ │ │ │ │ │ └── labels.txt │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Native.cc │ │ │ │ │ │ ├── Native.h │ │ │ │ │ │ ├── Pipeline.cc │ │ │ │ │ │ ├── Pipeline.h │ │ │ │ │ │ ├── Utils.cc │ │ │ │ │ │ └── Utils.h │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── baidu │ │ │ │ │ │ │ └── paddle │ │ │ │ │ │ │ └── lite │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ │ └── segmentation │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ ├── Native.java │ │ │ │ │ │ │ └── SettingsActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── btn_switch_default.png │ │ │ │ │ │ └── btn_switch_pressed.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── btn_settings.xml │ │ │ │ │ │ ├── btn_settings_default.xml │ │ │ │ │ │ ├── btn_settings_pressed.xml │ │ │ │ │ │ ├── btn_shutter.xml │ │ │ │ │ │ ├── btn_shutter_default.xml │ │ │ │ │ │ ├── btn_shutter_pressed.xml │ │ │ │ │ │ ├── btn_switch.xml │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout-land │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── menu │ │ │ │ │ │ └── menu_action_options.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 │ │ │ │ │ │ ├── arrays.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── settings.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── segmentation │ │ │ │ │ └── ExampleUnitTest.java │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ ├── local.properties │ │ │ │ └── settings.gradle │ │ └── java │ │ │ └── human_segmentation │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── local.properties │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ │ └── image_segmentation │ │ │ │ │ │ ├── images │ │ │ │ │ │ └── human.jpg │ │ │ │ │ │ └── labels │ │ │ │ │ │ └── label_list │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ └── segmentation │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── Predictor.java │ │ │ │ │ │ ├── SettingsActivity.java │ │ │ │ │ │ ├── Utils.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── Config.java │ │ │ │ │ │ ├── preprocess │ │ │ │ │ │ └── Preprocess.java │ │ │ │ │ │ └── visual │ │ │ │ │ │ └── Visualize.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── menu │ │ │ │ │ └── menu_action_options.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 │ │ │ │ │ ├── arrays.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── settings.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── paddle │ │ │ │ └── lite │ │ │ │ └── demo │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ └── shell │ │ └── cxx │ │ └── human_segmentation │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── human_segmentation.cc │ │ └── run.sh ├── assets │ ├── download.sh │ ├── images │ │ └── human.jpg │ └── labels │ │ └── label_list └── ios │ └── human_segmentation │ ├── README.md │ ├── human_segmentation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── chenjiao04.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── majianping02.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── human_segmentation.xcscheme │ └── xcuserdata │ │ ├── chenjiao04.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── majianping02.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── human_segmentation │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.mm │ ├── main.m │ └── timer.h │ └── prepare.sh ├── image_classification ├── android │ ├── app │ │ ├── cxx │ │ │ └── image_classification │ │ │ │ ├── README.md │ │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── app.iml │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ └── image_classification │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── tabby_cat.jpg │ │ │ │ │ │ └── labels │ │ │ │ │ │ │ └── labels.txt │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Native.cc │ │ │ │ │ │ ├── Native.h │ │ │ │ │ │ ├── Pipeline.cc │ │ │ │ │ │ ├── Pipeline.h │ │ │ │ │ │ ├── Utils.cc │ │ │ │ │ │ └── Utils.h │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── baidu │ │ │ │ │ │ │ └── paddle │ │ │ │ │ │ │ └── lite │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ │ └── image_classification │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ ├── Native.java │ │ │ │ │ │ │ └── SettingsActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── btn_switch_default.png │ │ │ │ │ │ └── btn_switch_pressed.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── btn_settings.xml │ │ │ │ │ │ ├── btn_settings_default.xml │ │ │ │ │ │ ├── btn_settings_pressed.xml │ │ │ │ │ │ ├── btn_shutter.xml │ │ │ │ │ │ ├── btn_shutter_default.xml │ │ │ │ │ │ ├── btn_shutter_pressed.xml │ │ │ │ │ │ ├── btn_switch.xml │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout-land │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── menu │ │ │ │ │ │ └── menu_action_options.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 │ │ │ │ │ │ ├── arrays.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── settings.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── image_classification │ │ │ │ │ └── ExampleUnitTest.java │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ ├── local.properties │ │ │ │ └── settings.gradle │ │ └── java │ │ │ └── image_classification │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── image_classification │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── tabby_cat.jpg │ │ │ │ │ └── labels │ │ │ │ │ │ └── synset_words.txt │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ └── image_classification │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── Predictor.java │ │ │ │ │ │ ├── SettingsActivity.java │ │ │ │ │ │ └── Utils.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── menu │ │ │ │ │ └── menu_action_options.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 │ │ │ │ │ ├── arrays.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── settings.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── paddle │ │ │ │ └── lite │ │ │ │ └── demo │ │ │ │ └── image_classification │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ └── shell │ │ └── cxx │ │ └── image_classification │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── image_classification.cc │ │ └── run.sh ├── armlinux │ ├── app │ │ └── cxx │ │ │ └── README.md │ └── shell │ │ ├── cxx │ │ └── README.md │ │ └── python │ │ ├── README.md │ │ ├── image_classification.py │ │ └── run.sh ├── assets │ ├── download.sh │ ├── images │ │ └── tabby_cat.jpg │ └── labels │ │ └── labels.txt ├── ios │ └── image_classification │ │ ├── README.md │ │ ├── image_classification.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── chenjiao04.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── chenjiao04.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ ├── image_classification │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.mm │ │ ├── main.m │ │ └── timer.h │ │ └── prepare.sh └── linux │ ├── app │ └── cxx │ │ └── image_classification │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── image_classification.cc │ │ └── run.sh │ ├── download_models_and_libs.sh │ └── mobilenet_v3 │ ├── CMakeLists.txt │ ├── README.md │ ├── build.sh │ ├── image_classification.cc │ └── run.sh ├── libs └── download.sh ├── mask_detection ├── android │ ├── app │ │ └── cxx │ │ │ └── mask_detection │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── mask_detection │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Native.cc │ │ │ │ │ ├── Native.h │ │ │ │ │ ├── Pipeline.cc │ │ │ │ │ ├── Pipeline.h │ │ │ │ │ ├── Utils.cc │ │ │ │ │ └── Utils.h │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ ├── CameraSurfaceView.java │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ └── mask_detection │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── Native.java │ │ │ │ │ │ └── SettingsActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── btn_switch_default.png │ │ │ │ │ └── btn_switch_pressed.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── btn_settings.xml │ │ │ │ │ ├── btn_settings_default.xml │ │ │ │ │ ├── btn_settings_pressed.xml │ │ │ │ │ ├── btn_shutter.xml │ │ │ │ │ ├── btn_shutter_default.xml │ │ │ │ │ ├── btn_shutter_pressed.xml │ │ │ │ │ ├── btn_switch.xml │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout-land │ │ │ │ │ └── activity_main.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 │ │ │ │ │ ├── arrays.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── settings.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── paddle │ │ │ │ └── lite │ │ │ │ └── demo │ │ │ │ └── mask_detection │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── local.properties │ │ │ └── settings.gradle │ └── shell │ │ └── cxx │ │ └── mask_detection │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── mask_detection.cc │ │ └── run.sh └── assets │ ├── download.sh │ └── images │ └── girl.png ├── object_detection ├── android │ ├── app │ │ └── cxx │ │ │ ├── picodet_detection_demo │ │ │ ├── README.md │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── app.iml │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ └── object_detection │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── dog.jpg │ │ │ │ │ │ └── labels │ │ │ │ │ │ │ ├── coco_label_list.txt │ │ │ │ │ │ │ └── pascalvoc_label_list │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Native.cc │ │ │ │ │ │ ├── Native.h │ │ │ │ │ │ ├── Pipeline.cc │ │ │ │ │ │ ├── Pipeline.h │ │ │ │ │ │ ├── Utils.cc │ │ │ │ │ │ └── Utils.h │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── baidu │ │ │ │ │ │ │ └── paddle │ │ │ │ │ │ │ └── lite │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ │ ├── CameraSurfaceView.java │ │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ │ └── object_detection │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ ├── Native.java │ │ │ │ │ │ │ └── SettingsActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── btn_switch_default.png │ │ │ │ │ │ └── btn_switch_pressed.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── btn_settings.xml │ │ │ │ │ │ ├── btn_settings_default.xml │ │ │ │ │ │ ├── btn_settings_pressed.xml │ │ │ │ │ │ ├── btn_shutter.xml │ │ │ │ │ │ ├── btn_shutter_default.xml │ │ │ │ │ │ ├── btn_shutter_pressed.xml │ │ │ │ │ │ ├── btn_switch.xml │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout-land │ │ │ │ │ │ └── activity_main.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 │ │ │ │ │ │ ├── arrays.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── settings.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── object_detection │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── local.properties │ │ │ ├── settings.gradle │ │ │ └── ssd_detection_demo.iml │ │ │ ├── ssd_mobilenetv1_detection_demo │ │ │ ├── README.md │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── app.iml │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ └── object_detection │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── dog.jpg │ │ │ │ │ │ └── labels │ │ │ │ │ │ │ └── pascalvoc_label_list │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Native.cc │ │ │ │ │ │ ├── Native.h │ │ │ │ │ │ ├── Pipeline.cc │ │ │ │ │ │ ├── Pipeline.h │ │ │ │ │ │ ├── Utils.cc │ │ │ │ │ │ └── Utils.h │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── baidu │ │ │ │ │ │ │ └── paddle │ │ │ │ │ │ │ └── lite │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ │ ├── CameraSurfaceView.java │ │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ │ └── object_detection │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ ├── Native.java │ │ │ │ │ │ │ └── SettingsActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── btn_switch_default.png │ │ │ │ │ │ └── btn_switch_pressed.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── btn_settings.xml │ │ │ │ │ │ ├── btn_settings_default.xml │ │ │ │ │ │ ├── btn_settings_pressed.xml │ │ │ │ │ │ ├── btn_shutter.xml │ │ │ │ │ │ ├── btn_shutter_default.xml │ │ │ │ │ │ ├── btn_shutter_pressed.xml │ │ │ │ │ │ ├── btn_switch.xml │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout-land │ │ │ │ │ │ └── activity_main.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 │ │ │ │ │ │ ├── arrays.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── settings.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── object_detection │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── local.properties │ │ │ ├── settings.gradle │ │ │ └── ssd_detection_demo.iml │ │ │ ├── yolo_detection_demo │ │ │ ├── README.md │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── app.iml │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ └── yolo_detection │ │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── kite.jpg │ │ │ │ │ │ └── labels │ │ │ │ │ │ │ └── coco-labels-2014_2017.txt │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Native.cc │ │ │ │ │ │ ├── Native.h │ │ │ │ │ │ ├── Pipeline.cc │ │ │ │ │ │ ├── Pipeline.h │ │ │ │ │ │ ├── Utils.cc │ │ │ │ │ │ └── Utils.h │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── baidu │ │ │ │ │ │ │ └── paddle │ │ │ │ │ │ │ └── lite │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ │ ├── CameraSurfaceView.java │ │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ │ └── yolo_detection │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ ├── Native.java │ │ │ │ │ │ │ └── SettingsActivity.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── btn_switch_default.png │ │ │ │ │ │ └── btn_switch_pressed.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── btn_settings.xml │ │ │ │ │ │ ├── btn_settings_default.xml │ │ │ │ │ │ ├── btn_settings_pressed.xml │ │ │ │ │ │ ├── btn_shutter.xml │ │ │ │ │ │ ├── btn_shutter_default.xml │ │ │ │ │ │ ├── btn_shutter_pressed.xml │ │ │ │ │ │ ├── btn_switch.xml │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout-land │ │ │ │ │ │ └── activity_main.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 │ │ │ │ │ │ ├── arrays.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── settings.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── yolo_detection │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── settings.gradle │ │ │ └── yolo_detection_demo.iml │ │ │ └── yolov5n_detection_demo │ │ │ ├── .gradle │ │ │ ├── 7.0 │ │ │ │ ├── dependencies-accessors │ │ │ │ │ ├── dependencies-accessors.lock │ │ │ │ │ └── gc.properties │ │ │ │ ├── executionHistory │ │ │ │ │ ├── executionHistory.bin │ │ │ │ │ └── executionHistory.lock │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── gc.properties │ │ │ │ └── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ └── taskHistory.bin │ │ │ ├── buildOutputCleanup │ │ │ │ ├── buildOutputCleanup.lock │ │ │ │ ├── cache.properties │ │ │ │ └── outputFiles.bin │ │ │ ├── configuration-cache │ │ │ │ └── gc.properties │ │ │ └── vcs-1 │ │ │ │ └── gc.properties │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── app.iml │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── object_detection │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── dog.jpg │ │ │ │ │ ├── labels │ │ │ │ │ │ └── coco_label_list.txt │ │ │ │ │ └── models │ │ │ │ │ │ ├── yolov5n_coco_for_cpu │ │ │ │ │ │ └── model.nb │ │ │ │ │ │ └── yolov5n_coco_for_gpu │ │ │ │ │ │ └── model.nb │ │ │ │ ├── cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Native.cc │ │ │ │ │ ├── Native.h │ │ │ │ │ ├── Pipeline.cc │ │ │ │ │ ├── Pipeline.h │ │ │ │ │ ├── Utils.cc │ │ │ │ │ └── Utils.h │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ ├── CameraSurfaceView.java │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ └── object_detection │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── Native.java │ │ │ │ │ │ └── SettingsActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── btn_switch_default.png │ │ │ │ │ └── btn_switch_pressed.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── btn_settings.xml │ │ │ │ │ ├── btn_settings_default.xml │ │ │ │ │ ├── btn_settings_pressed.xml │ │ │ │ │ ├── btn_shutter.xml │ │ │ │ │ ├── btn_shutter_default.xml │ │ │ │ │ ├── btn_shutter_pressed.xml │ │ │ │ │ ├── btn_switch.xml │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout-land │ │ │ │ │ └── activity_main.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 │ │ │ │ │ ├── arrays.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── settings.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── paddle │ │ │ │ └── lite │ │ │ │ └── demo │ │ │ │ └── object_detection │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── local.properties │ │ │ ├── settings.gradle │ │ │ └── yolov5n_detection_demo.iml │ └── shell │ │ └── cxx │ │ ├── picodet_detection │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── picodet_detection.cc │ │ └── run.sh │ │ ├── ssd_mobilenetv1_detection │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── run.sh │ │ └── ssd_mobilenetv1_detection.cc │ │ ├── yolov3_mobilenet_v3 │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── run.sh │ │ └── yolov3_mobilenet_v3.cc │ │ └── yolov5n_detection │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── run.sh │ │ └── yolov5n_detection.cc ├── assets │ ├── download.sh │ ├── images │ │ └── dog.jpg │ ├── labels │ │ ├── coco_label_list.txt │ │ └── pascalvoc_label_list │ └── models │ │ ├── yolov5n_coco_for_cpu │ │ └── model.nb │ │ └── yolov5n_coco_for_gpu │ │ └── model.nb ├── ios │ ├── picodet_demo │ │ ├── README.md │ │ ├── detection_demo │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.mm │ │ │ ├── main.m │ │ │ └── timer.h │ │ ├── picodet_demo.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ ├── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcuserdata │ │ │ │ │ └── chenjiao04.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata │ │ │ │ └── chenjiao04.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ └── prepare.sh │ ├── ssd_mobilenetv1_demo │ │ ├── README.md │ │ ├── detection_demo │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.mm │ │ │ ├── main.m │ │ │ └── timer.h │ │ ├── prepare.sh │ │ └── ssd_mobilenetv1_demo.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── chenjiao04.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata │ │ │ └── chenjiao04.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── yolov3_mobilenet_v3_demo │ │ ├── README.md │ │ ├── detection_demo │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.mm │ │ ├── main.m │ │ └── timer.h │ │ ├── prepare.sh │ │ └── yolov3_mobilenet_v3_demo.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── arm_mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── chenjiao04.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ ├── arm_mac.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── chenjiao04.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── linux │ ├── download_models_and_libs.sh │ └── picodet_detection │ ├── CMakeLists.txt │ ├── README.md │ ├── build.sh │ ├── object_detection_demo.cc │ └── run.sh ├── ocr ├── android │ ├── app │ │ └── cxx │ │ │ └── ppocr_demo │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── paddle │ │ │ │ │ └── lite │ │ │ │ │ └── demo │ │ │ │ │ └── object_detection │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Native.cc │ │ │ │ │ ├── Native.h │ │ │ │ │ ├── clipper.cpp │ │ │ │ │ ├── clipper.hpp │ │ │ │ │ ├── cls_process.cc │ │ │ │ │ ├── cls_process.h │ │ │ │ │ ├── db_post_process.cc │ │ │ │ │ ├── db_post_process.h │ │ │ │ │ ├── det_process.cc │ │ │ │ │ ├── det_process.h │ │ │ │ │ ├── pipeline.cc │ │ │ │ │ ├── pipeline.h │ │ │ │ │ ├── rec_process.cc │ │ │ │ │ ├── rec_process.h │ │ │ │ │ ├── utils.cc │ │ │ │ │ └── utils.h │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── paddle │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── demo │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── AppCompatPreferenceActivity.java │ │ │ │ │ │ ├── CameraSurfaceView.java │ │ │ │ │ │ ├── SDKExceptions.java │ │ │ │ │ │ └── Utils.java │ │ │ │ │ │ └── ppocr_demo │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── Native.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── btn_switch_default.png │ │ │ │ │ └── btn_switch_pressed.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── btn_settings.xml │ │ │ │ │ ├── btn_settings_default.xml │ │ │ │ │ ├── btn_settings_pressed.xml │ │ │ │ │ ├── btn_shutter.xml │ │ │ │ │ ├── btn_shutter_default.xml │ │ │ │ │ ├── btn_shutter_pressed.xml │ │ │ │ │ ├── btn_switch.xml │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout-land │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── menu │ │ │ │ │ └── menu_action_options.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 │ │ │ │ │ ├── arrays.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── paddle │ │ │ │ └── lite │ │ │ │ └── demo │ │ │ │ └── object_detection │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── prepare.sh │ │ │ └── settings.gradle │ └── shell │ │ └── ppocr_demo │ │ ├── README.md │ │ ├── build.sh │ │ ├── run.sh │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── clipper.cpp │ │ ├── clipper.hpp │ │ ├── cls_process.cc │ │ ├── cls_process.h │ │ ├── db_post_process.cc │ │ ├── db_post_process.h │ │ ├── det_process.cc │ │ ├── det_process.h │ │ ├── pipeline.cc │ │ ├── pipeline.h │ │ ├── rec_process.cc │ │ ├── rec_process.h │ │ ├── utils.cc │ │ └── utils.h ├── armlinux │ └── shell │ │ └── cxx │ │ └── ppocr_demo │ │ ├── README.md │ │ ├── build.sh │ │ ├── run.sh │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── clipper.cpp │ │ ├── clipper.hpp │ │ ├── cls_process.cc │ │ ├── cls_process.h │ │ ├── db_post_process.cc │ │ ├── db_post_process.h │ │ ├── det_process.cc │ │ ├── det_process.h │ │ ├── pipeline.cc │ │ ├── pipeline.h │ │ ├── rec_process.cc │ │ ├── rec_process.h │ │ ├── utils.cc │ │ └── utils.h ├── assets │ ├── config.txt │ └── download.sh └── ios │ └── ppocr_demo │ ├── ppocr_demo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── chenjiao04.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── gaowenling.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── detection_demo.xcscheme │ │ │ └── ppocr_demo.xcscheme │ └── xcuserdata │ │ └── chenjiao04.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── ppocr_demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── README.md │ ├── ViewController.h │ ├── ViewController.mm │ ├── clipper.cpp │ ├── clipper.h │ ├── clipper.hpp │ ├── clipper.mm │ ├── cls_process.cc │ ├── cls_process.h │ ├── config.txt │ ├── db_post_process.cc │ ├── db_post_process.h │ ├── det_process.cc │ ├── det_process.h │ ├── main.m │ ├── pipeline.cc │ ├── pipeline.h │ ├── rec_process.cc │ ├── rec_process.h │ ├── third-party │ │ └── README.md │ ├── timer.h │ ├── utils.cc │ └── utils.h │ └── prepare.sh ├── pose_detection ├── assets │ ├── images │ │ └── posedet_demo.jpg │ └── models │ │ └── models.txt └── linux │ ├── download_models_and_libs.sh │ └── tiny_pose │ ├── CMakeLists.txt │ ├── README.md │ ├── build.sh │ ├── pose_detection_demo.cc │ └── run.sh └── tools ├── ci_tools └── android_demo_ci.sh └── codestyle ├── .gitignore ├── clang_format.hook ├── copyright.hook ├── cpplint_pre_commit.hook ├── docstring_checker.py ├── pylint_pre_commit.hook └── test_docstring_checker.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/LICENSE -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/README.md -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/app.iml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/build.gradle -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/proguard-rules.pro -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/assets/images/wu_ling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/assets/images/wu_ling.jpg -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/assets/labels/label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/assets/labels/label.txt -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Native.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Native.cc -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Native.h -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/ObjectDetector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/ObjectDetector.cc -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/ObjectDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/ObjectDetector.h -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Pipeline.cc -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Pipeline.h -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Recognition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Recognition.cc -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Recognition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Recognition.h -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Utils.cc -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_settings.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_settings_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_settings_default.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_settings_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_settings_pressed.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_shutter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_shutter.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_shutter_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_shutter_default.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_shutter_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_shutter_pressed.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/btn_switch.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/layout-land/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/layout-land/activity_main.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/menu/menu_action_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/menu/menu_action_options.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/build.gradle -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/gradle.properties -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/gradlew -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/gradlew.bat -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/app/cxx/pp_shitu/local.properties -------------------------------------------------------------------------------- /PP_shitu/android/app/cxx/pp_shitu/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/CMakeLists.txt -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/README.md -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/build.sh -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/run.sh -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/src/object_detector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/src/object_detector.cc -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/src/object_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/src/object_detector.h -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/src/pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/src/pipeline.cc -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/src/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/src/pipeline.h -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/src/recognition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/src/recognition.cc -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/src/recognition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/src/recognition.h -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/src/utils.cc -------------------------------------------------------------------------------- /PP_shitu/android/shell/cxx/shitu/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/android/shell/cxx/shitu/src/utils.h -------------------------------------------------------------------------------- /PP_shitu/assets/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/assets/download.sh -------------------------------------------------------------------------------- /PP_shitu/assets/images/nike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/assets/images/nike.jpg -------------------------------------------------------------------------------- /PP_shitu/assets/images/pyramid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/assets/images/pyramid.jpg -------------------------------------------------------------------------------- /PP_shitu/assets/images/tokyo_tower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/assets/images/tokyo_tower.jpg -------------------------------------------------------------------------------- /PP_shitu/assets/images/wu_ling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/assets/images/wu_ling.jpg -------------------------------------------------------------------------------- /PP_shitu/assets/images/yuan_qi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/assets/images/yuan_qi.jpg -------------------------------------------------------------------------------- /PP_shitu/assets/labels/label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/assets/labels/label.txt -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/PPshitu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/PPshitu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/PPshitu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/PPshitu.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/README.md -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/prepare.sh -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/AppDelegate.h -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/AppDelegate.m -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/Info.plist -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/ViewController.h -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/ViewController.mm -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/main.m -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/src/object_detector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/src/object_detector.cc -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/src/object_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/src/object_detector.h -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/src/pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/src/pipeline.cc -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/src/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/src/pipeline.h -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/src/recognition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/src/recognition.cc -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/src/recognition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/src/recognition.h -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/src/utils.cc -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/src/utils.h -------------------------------------------------------------------------------- /PP_shitu/ios/PPshitu/shitu/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/PP_shitu/ios/PPshitu/shitu/timer.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/README.md -------------------------------------------------------------------------------- /docs_img/image_classify/app_run_res.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/docs_img/image_classify/app_run_res.jpg -------------------------------------------------------------------------------- /docs_img/image_classify/armlinux_image_classification.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/docs_img/image_classify/armlinux_image_classification.jpg -------------------------------------------------------------------------------- /docs_img/image_classify/ios_app_run.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/docs_img/image_classify/ios_app_run.jpg -------------------------------------------------------------------------------- /docs_img/object_detection/app_run_res.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/docs_img/object_detection/app_run_res.jpg -------------------------------------------------------------------------------- /docs_img/object_detection/ios_app_run.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/docs_img/object_detection/ios_app_run.jpg -------------------------------------------------------------------------------- /docs_img/ocr/ppocr_app_run.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/docs_img/ocr/ppocr_app_run.jpg -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/README.md -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/app.iml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/build.gradle -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/proguard-rules.pro -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/assets/images/face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/assets/images/face.jpg -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/assets/labels/labels.txt: -------------------------------------------------------------------------------- 1 | background 2 | face 3 | -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/cpp/Native.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/cpp/Native.cc -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/cpp/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/cpp/Native.h -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/cpp/Pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/cpp/Pipeline.cc -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/cpp/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/cpp/Pipeline.h -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/cpp/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/cpp/Utils.cc -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/drawable/btn_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/drawable/btn_settings.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/drawable/btn_shutter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/drawable/btn_shutter.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/drawable/btn_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/drawable/btn_switch.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/menu/menu_action_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/menu/menu_action_options.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/build.gradle -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/gradle.properties -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/gradlew -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/app/cxx/face_detection/gradlew.bat -------------------------------------------------------------------------------- /face_detection/android/app/cxx/face_detection/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /face_detection/android/shell/cxx/face_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/shell/cxx/face_detection/CMakeLists.txt -------------------------------------------------------------------------------- /face_detection/android/shell/cxx/face_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/shell/cxx/face_detection/README.md -------------------------------------------------------------------------------- /face_detection/android/shell/cxx/face_detection/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/shell/cxx/face_detection/build.sh -------------------------------------------------------------------------------- /face_detection/android/shell/cxx/face_detection/face_detection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/shell/cxx/face_detection/face_detection.cc -------------------------------------------------------------------------------- /face_detection/android/shell/cxx/face_detection/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/android/shell/cxx/face_detection/run.sh -------------------------------------------------------------------------------- /face_detection/assets/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/assets/download.sh -------------------------------------------------------------------------------- /face_detection/assets/images/face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/assets/images/face.jpg -------------------------------------------------------------------------------- /face_detection/assets/labels/labels.txt: -------------------------------------------------------------------------------- 1 | background 2 | face 3 | -------------------------------------------------------------------------------- /face_detection/ios/face_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/README.md -------------------------------------------------------------------------------- /face_detection/ios/face_detection/face_detection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/face_detection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /face_detection/ios/face_detection/face_detection/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/face_detection/AppDelegate.h -------------------------------------------------------------------------------- /face_detection/ios/face_detection/face_detection/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/face_detection/AppDelegate.m -------------------------------------------------------------------------------- /face_detection/ios/face_detection/face_detection/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/face_detection/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /face_detection/ios/face_detection/face_detection/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/face_detection/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /face_detection/ios/face_detection/face_detection/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/face_detection/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /face_detection/ios/face_detection/face_detection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/face_detection/Info.plist -------------------------------------------------------------------------------- /face_detection/ios/face_detection/face_detection/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/face_detection/ViewController.h -------------------------------------------------------------------------------- /face_detection/ios/face_detection/face_detection/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/face_detection/ViewController.mm -------------------------------------------------------------------------------- /face_detection/ios/face_detection/face_detection/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/face_detection/main.m -------------------------------------------------------------------------------- /face_detection/ios/face_detection/face_detection/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/face_detection/timer.h -------------------------------------------------------------------------------- /face_detection/ios/face_detection/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_detection/ios/face_detection/prepare.sh -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/app/cxx/face_keypoints_detection/README.md -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/app.iml -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/build.gradle -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/proguard-rules.pro -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/src/main/cpp/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/src/main/cpp/Native.h -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/src/main/cpp/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/src/main/cpp/Utils.cc -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/app/cxx/face_keypoints_detection/app/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/app/cxx/face_keypoints_detection/build.gradle -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/app/cxx/face_keypoints_detection/gradle.properties -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/app/cxx/face_keypoints_detection/gradlew -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/app/cxx/face_keypoints_detection/gradlew.bat -------------------------------------------------------------------------------- /face_keypoints_detection/android/app/cxx/face_keypoints_detection/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /face_keypoints_detection/android/shell/cxx/face_keypoints_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/shell/cxx/face_keypoints_detection/CMakeLists.txt -------------------------------------------------------------------------------- /face_keypoints_detection/android/shell/cxx/face_keypoints_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/shell/cxx/face_keypoints_detection/README.md -------------------------------------------------------------------------------- /face_keypoints_detection/android/shell/cxx/face_keypoints_detection/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/shell/cxx/face_keypoints_detection/build.sh -------------------------------------------------------------------------------- /face_keypoints_detection/android/shell/cxx/face_keypoints_detection/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/android/shell/cxx/face_keypoints_detection/run.sh -------------------------------------------------------------------------------- /face_keypoints_detection/assets/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/assets/download.sh -------------------------------------------------------------------------------- /face_keypoints_detection/assets/images/face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/assets/images/face.jpg -------------------------------------------------------------------------------- /face_keypoints_detection/ios/face_keypoints_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/ios/face_keypoints_detection/README.md -------------------------------------------------------------------------------- /face_keypoints_detection/ios/face_keypoints_detection/face_keypoints_detection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/ios/face_keypoints_detection/face_keypoints_detection/Info.plist -------------------------------------------------------------------------------- /face_keypoints_detection/ios/face_keypoints_detection/face_keypoints_detection/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/ios/face_keypoints_detection/face_keypoints_detection/main.m -------------------------------------------------------------------------------- /face_keypoints_detection/ios/face_keypoints_detection/face_keypoints_detection/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/ios/face_keypoints_detection/face_keypoints_detection/timer.h -------------------------------------------------------------------------------- /face_keypoints_detection/ios/face_keypoints_detection/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/face_keypoints_detection/ios/face_keypoints_detection/prepare.sh -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/README.md -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/app.iml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/build.gradle -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/proguard-rules.pro -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/assets/images/human.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/assets/images/human.jpg -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/assets/labels/labels.txt: -------------------------------------------------------------------------------- 1 | background 2 | human 3 | -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Native.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Native.cc -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Native.h -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Pipeline.cc -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Pipeline.h -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Utils.cc -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/res/drawable/btn_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/res/drawable/btn_settings.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/res/drawable/btn_shutter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/res/drawable/btn_shutter.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/res/drawable/btn_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/res/drawable/btn_switch.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/build.gradle -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/gradle.properties -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/gradlew -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/gradlew.bat -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/cxx/Segmentation/local.properties -------------------------------------------------------------------------------- /human_segmentation/android/app/cxx/Segmentation/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Segmentation' 3 | -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/.gitignore -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/README.md -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/app/build.gradle -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/app/gradlew -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/app/gradlew.bat -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/app/local.properties -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/app/proguard-rules.pro -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/src/main/assets/image_segmentation/labels/label_list: -------------------------------------------------------------------------------- 1 | background 2 | human 3 | -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/build.gradle -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/gradle.properties -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/gradlew -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/app/java/human_segmentation/gradlew.bat -------------------------------------------------------------------------------- /human_segmentation/android/app/java/human_segmentation/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /human_segmentation/android/shell/cxx/human_segmentation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/shell/cxx/human_segmentation/CMakeLists.txt -------------------------------------------------------------------------------- /human_segmentation/android/shell/cxx/human_segmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/shell/cxx/human_segmentation/README.md -------------------------------------------------------------------------------- /human_segmentation/android/shell/cxx/human_segmentation/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/shell/cxx/human_segmentation/build.sh -------------------------------------------------------------------------------- /human_segmentation/android/shell/cxx/human_segmentation/human_segmentation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/shell/cxx/human_segmentation/human_segmentation.cc -------------------------------------------------------------------------------- /human_segmentation/android/shell/cxx/human_segmentation/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/android/shell/cxx/human_segmentation/run.sh -------------------------------------------------------------------------------- /human_segmentation/assets/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/assets/download.sh -------------------------------------------------------------------------------- /human_segmentation/assets/images/human.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/assets/images/human.jpg -------------------------------------------------------------------------------- /human_segmentation/assets/labels/label_list: -------------------------------------------------------------------------------- 1 | background 2 | human -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/README.md -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/human_segmentation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/human_segmentation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/human_segmentation/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/human_segmentation/AppDelegate.h -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/human_segmentation/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/human_segmentation/AppDelegate.m -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/human_segmentation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/human_segmentation/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/human_segmentation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/human_segmentation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/human_segmentation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/human_segmentation/Info.plist -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/human_segmentation/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/human_segmentation/ViewController.h -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/human_segmentation/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/human_segmentation/ViewController.mm -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/human_segmentation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/human_segmentation/main.m -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/human_segmentation/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/human_segmentation/timer.h -------------------------------------------------------------------------------- /human_segmentation/ios/human_segmentation/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/human_segmentation/ios/human_segmentation/prepare.sh -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/README.md -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/app.iml -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/build.gradle -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/proguard-rules.pro -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/src/main/cpp/Native.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/src/main/cpp/Native.cc -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/src/main/cpp/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/src/main/cpp/Native.h -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/src/main/cpp/Pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/src/main/cpp/Pipeline.cc -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/src/main/cpp/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/src/main/cpp/Pipeline.h -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/src/main/cpp/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/src/main/cpp/Utils.cc -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/build.gradle -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/gradle.properties -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/gradlew -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/gradlew.bat -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/cxx/image_classification/local.properties -------------------------------------------------------------------------------- /image_classification/android/app/cxx/image_classification/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /image_classification/android/app/java/image_classification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/java/image_classification/.gitignore -------------------------------------------------------------------------------- /image_classification/android/app/java/image_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/java/image_classification/README.md -------------------------------------------------------------------------------- /image_classification/android/app/java/image_classification/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /image_classification/android/app/java/image_classification/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/java/image_classification/app/build.gradle -------------------------------------------------------------------------------- /image_classification/android/app/java/image_classification/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/java/image_classification/app/proguard-rules.pro -------------------------------------------------------------------------------- /image_classification/android/app/java/image_classification/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/java/image_classification/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /image_classification/android/app/java/image_classification/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/java/image_classification/build.gradle -------------------------------------------------------------------------------- /image_classification/android/app/java/image_classification/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/java/image_classification/gradle.properties -------------------------------------------------------------------------------- /image_classification/android/app/java/image_classification/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/java/image_classification/gradlew -------------------------------------------------------------------------------- /image_classification/android/app/java/image_classification/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/app/java/image_classification/gradlew.bat -------------------------------------------------------------------------------- /image_classification/android/app/java/image_classification/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /image_classification/android/shell/cxx/image_classification/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/shell/cxx/image_classification/CMakeLists.txt -------------------------------------------------------------------------------- /image_classification/android/shell/cxx/image_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/shell/cxx/image_classification/README.md -------------------------------------------------------------------------------- /image_classification/android/shell/cxx/image_classification/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/shell/cxx/image_classification/build.sh -------------------------------------------------------------------------------- /image_classification/android/shell/cxx/image_classification/image_classification.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/shell/cxx/image_classification/image_classification.cc -------------------------------------------------------------------------------- /image_classification/android/shell/cxx/image_classification/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/android/shell/cxx/image_classification/run.sh -------------------------------------------------------------------------------- /image_classification/armlinux/app/cxx/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_classification/armlinux/shell/cxx/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_classification/armlinux/shell/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/armlinux/shell/python/README.md -------------------------------------------------------------------------------- /image_classification/armlinux/shell/python/image_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/armlinux/shell/python/image_classification.py -------------------------------------------------------------------------------- /image_classification/armlinux/shell/python/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/armlinux/shell/python/run.sh -------------------------------------------------------------------------------- /image_classification/assets/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/assets/download.sh -------------------------------------------------------------------------------- /image_classification/assets/images/tabby_cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/assets/images/tabby_cat.jpg -------------------------------------------------------------------------------- /image_classification/assets/labels/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/assets/labels/labels.txt -------------------------------------------------------------------------------- /image_classification/ios/image_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/ios/image_classification/README.md -------------------------------------------------------------------------------- /image_classification/ios/image_classification/image_classification/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/ios/image_classification/image_classification/AppDelegate.h -------------------------------------------------------------------------------- /image_classification/ios/image_classification/image_classification/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/ios/image_classification/image_classification/AppDelegate.m -------------------------------------------------------------------------------- /image_classification/ios/image_classification/image_classification/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/ios/image_classification/image_classification/Info.plist -------------------------------------------------------------------------------- /image_classification/ios/image_classification/image_classification/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/ios/image_classification/image_classification/ViewController.h -------------------------------------------------------------------------------- /image_classification/ios/image_classification/image_classification/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/ios/image_classification/image_classification/ViewController.mm -------------------------------------------------------------------------------- /image_classification/ios/image_classification/image_classification/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/ios/image_classification/image_classification/main.m -------------------------------------------------------------------------------- /image_classification/ios/image_classification/image_classification/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/ios/image_classification/image_classification/timer.h -------------------------------------------------------------------------------- /image_classification/ios/image_classification/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/ios/image_classification/prepare.sh -------------------------------------------------------------------------------- /image_classification/linux/app/cxx/image_classification/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/linux/app/cxx/image_classification/CMakeLists.txt -------------------------------------------------------------------------------- /image_classification/linux/app/cxx/image_classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/linux/app/cxx/image_classification/README.md -------------------------------------------------------------------------------- /image_classification/linux/app/cxx/image_classification/image_classification.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/linux/app/cxx/image_classification/image_classification.cc -------------------------------------------------------------------------------- /image_classification/linux/app/cxx/image_classification/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/linux/app/cxx/image_classification/run.sh -------------------------------------------------------------------------------- /image_classification/linux/download_models_and_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/linux/download_models_and_libs.sh -------------------------------------------------------------------------------- /image_classification/linux/mobilenet_v3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/linux/mobilenet_v3/CMakeLists.txt -------------------------------------------------------------------------------- /image_classification/linux/mobilenet_v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/linux/mobilenet_v3/README.md -------------------------------------------------------------------------------- /image_classification/linux/mobilenet_v3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/linux/mobilenet_v3/build.sh -------------------------------------------------------------------------------- /image_classification/linux/mobilenet_v3/image_classification.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/linux/mobilenet_v3/image_classification.cc -------------------------------------------------------------------------------- /image_classification/linux/mobilenet_v3/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/image_classification/linux/mobilenet_v3/run.sh -------------------------------------------------------------------------------- /libs/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/libs/download.sh -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/.gitignore -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/README.md -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/build.gradle -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/proguard-rules.pro -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Native.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Native.cc -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Native.h -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Pipeline.cc -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Pipeline.h -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Utils.cc -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/drawable/btn_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/drawable/btn_settings.xml -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/drawable/btn_shutter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/drawable/btn_shutter.xml -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/drawable/btn_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/drawable/btn_switch.xml -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/build.gradle -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/gradle.properties -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/gradlew -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/gradlew.bat -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/app/cxx/mask_detection/local.properties -------------------------------------------------------------------------------- /mask_detection/android/app/cxx/mask_detection/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /mask_detection/android/shell/cxx/mask_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/shell/cxx/mask_detection/CMakeLists.txt -------------------------------------------------------------------------------- /mask_detection/android/shell/cxx/mask_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/shell/cxx/mask_detection/README.md -------------------------------------------------------------------------------- /mask_detection/android/shell/cxx/mask_detection/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/shell/cxx/mask_detection/build.sh -------------------------------------------------------------------------------- /mask_detection/android/shell/cxx/mask_detection/mask_detection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/shell/cxx/mask_detection/mask_detection.cc -------------------------------------------------------------------------------- /mask_detection/android/shell/cxx/mask_detection/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/android/shell/cxx/mask_detection/run.sh -------------------------------------------------------------------------------- /mask_detection/assets/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/assets/download.sh -------------------------------------------------------------------------------- /mask_detection/assets/images/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/mask_detection/assets/images/girl.png -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/README.md -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/app.iml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/build.gradle -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/assets/images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/assets/images/dog.jpg -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Native.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Native.cc -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Native.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Pipeline.cc -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Pipeline.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Utils.cc -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/build.gradle -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/gradle.properties -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/gradlew -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/gradlew.bat -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/local.properties -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/picodet_detection_demo/ssd_detection_demo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/picodet_detection_demo/ssd_detection_demo.iml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/README.md -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/app.iml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/build.gradle -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/src/main/cpp/Native.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/src/main/cpp/Native.cc -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/src/main/cpp/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/src/main/cpp/Native.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/src/main/cpp/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/src/main/cpp/Pipeline.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/src/main/cpp/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/src/main/cpp/Utils.cc -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/app/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/build.gradle -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/gradle.properties -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/gradlew -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/gradlew.bat -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/local.properties -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/ssd_detection_demo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/ssd_mobilenetv1_detection_demo/ssd_detection_demo.iml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/README.md -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/app.iml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/build.gradle -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/assets/images/kite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/assets/images/kite.jpg -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Native.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Native.cc -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Native.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Pipeline.cc -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Pipeline.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Utils.cc -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/build.gradle -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/gradle.properties -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/gradlew -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/gradlew.bat -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolo_detection_demo/yolo_detection_demo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolo_detection_demo/yolo_detection_demo.iml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/.gradle/7.0/dependencies-accessors/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/.gradle/7.0/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/.gradle/7.0/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Apr 08 23:20:21 CST 2022 2 | gradle.version=7.0 3 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/.gradle/configuration-cache/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/README.md -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/app.iml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/build.gradle -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/assets/images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/assets/images/dog.jpg -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Native.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Native.cc -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Native.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Pipeline.cc -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Pipeline.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Utils.cc -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/cpp/Utils.h -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/build.gradle -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/gradle.properties -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/gradlew -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/gradlew.bat -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/local.properties -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /object_detection/android/app/cxx/yolov5n_detection_demo/yolov5n_detection_demo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/app/cxx/yolov5n_detection_demo/yolov5n_detection_demo.iml -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/picodet_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/picodet_detection/CMakeLists.txt -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/picodet_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/picodet_detection/README.md -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/picodet_detection/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/picodet_detection/build.sh -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/picodet_detection/picodet_detection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/picodet_detection/picodet_detection.cc -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/picodet_detection/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/picodet_detection/run.sh -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/ssd_mobilenetv1_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/ssd_mobilenetv1_detection/CMakeLists.txt -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/ssd_mobilenetv1_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/ssd_mobilenetv1_detection/README.md -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/ssd_mobilenetv1_detection/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/ssd_mobilenetv1_detection/build.sh -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/ssd_mobilenetv1_detection/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/ssd_mobilenetv1_detection/run.sh -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/ssd_mobilenetv1_detection/ssd_mobilenetv1_detection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/ssd_mobilenetv1_detection/ssd_mobilenetv1_detection.cc -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/yolov3_mobilenet_v3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/yolov3_mobilenet_v3/CMakeLists.txt -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/yolov3_mobilenet_v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/yolov3_mobilenet_v3/README.md -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/yolov3_mobilenet_v3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/yolov3_mobilenet_v3/build.sh -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/yolov3_mobilenet_v3/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/yolov3_mobilenet_v3/run.sh -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/yolov3_mobilenet_v3/yolov3_mobilenet_v3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/yolov3_mobilenet_v3/yolov3_mobilenet_v3.cc -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/yolov5n_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/yolov5n_detection/CMakeLists.txt -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/yolov5n_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/yolov5n_detection/README.md -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/yolov5n_detection/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/yolov5n_detection/build.sh -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/yolov5n_detection/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/yolov5n_detection/run.sh -------------------------------------------------------------------------------- /object_detection/android/shell/cxx/yolov5n_detection/yolov5n_detection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/android/shell/cxx/yolov5n_detection/yolov5n_detection.cc -------------------------------------------------------------------------------- /object_detection/assets/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/assets/download.sh -------------------------------------------------------------------------------- /object_detection/assets/images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/assets/images/dog.jpg -------------------------------------------------------------------------------- /object_detection/assets/labels/coco_label_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/assets/labels/coco_label_list.txt -------------------------------------------------------------------------------- /object_detection/assets/labels/pascalvoc_label_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/assets/labels/pascalvoc_label_list -------------------------------------------------------------------------------- /object_detection/assets/models/yolov5n_coco_for_cpu/model.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/assets/models/yolov5n_coco_for_cpu/model.nb -------------------------------------------------------------------------------- /object_detection/assets/models/yolov5n_coco_for_gpu/model.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/assets/models/yolov5n_coco_for_gpu/model.nb -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/README.md -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/detection_demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/detection_demo/AppDelegate.h -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/detection_demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/detection_demo/AppDelegate.m -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/detection_demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/detection_demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/detection_demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/detection_demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/detection_demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/detection_demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/detection_demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/detection_demo/Info.plist -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/detection_demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/detection_demo/ViewController.h -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/detection_demo/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/detection_demo/ViewController.mm -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/detection_demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/detection_demo/main.m -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/detection_demo/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/detection_demo/timer.h -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/picodet_demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/picodet_demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /object_detection/ios/picodet_demo/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/picodet_demo/prepare.sh -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/README.md -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/detection_demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/detection_demo/AppDelegate.h -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/detection_demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/detection_demo/AppDelegate.m -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/detection_demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/detection_demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/detection_demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/detection_demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/detection_demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/detection_demo/Info.plist -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/detection_demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/detection_demo/ViewController.h -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/detection_demo/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/detection_demo/ViewController.mm -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/detection_demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/detection_demo/main.m -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/detection_demo/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/detection_demo/timer.h -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/prepare.sh -------------------------------------------------------------------------------- /object_detection/ios/ssd_mobilenetv1_demo/ssd_mobilenetv1_demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/ssd_mobilenetv1_demo/ssd_mobilenetv1_demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /object_detection/ios/yolov3_mobilenet_v3_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/yolov3_mobilenet_v3_demo/README.md -------------------------------------------------------------------------------- /object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/AppDelegate.h -------------------------------------------------------------------------------- /object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/AppDelegate.m -------------------------------------------------------------------------------- /object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/Info.plist -------------------------------------------------------------------------------- /object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/ViewController.h -------------------------------------------------------------------------------- /object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/ViewController.mm -------------------------------------------------------------------------------- /object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/main.m -------------------------------------------------------------------------------- /object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/yolov3_mobilenet_v3_demo/detection_demo/timer.h -------------------------------------------------------------------------------- /object_detection/ios/yolov3_mobilenet_v3_demo/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/ios/yolov3_mobilenet_v3_demo/prepare.sh -------------------------------------------------------------------------------- /object_detection/linux/download_models_and_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/linux/download_models_and_libs.sh -------------------------------------------------------------------------------- /object_detection/linux/picodet_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/linux/picodet_detection/CMakeLists.txt -------------------------------------------------------------------------------- /object_detection/linux/picodet_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/linux/picodet_detection/README.md -------------------------------------------------------------------------------- /object_detection/linux/picodet_detection/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/linux/picodet_detection/build.sh -------------------------------------------------------------------------------- /object_detection/linux/picodet_detection/object_detection_demo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/linux/picodet_detection/object_detection_demo.cc -------------------------------------------------------------------------------- /object_detection/linux/picodet_detection/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/object_detection/linux/picodet_detection/run.sh -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/.gitignore -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/README.md -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/build.gradle -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/Native.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/Native.cc -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/Native.h -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/clipper.cpp -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/clipper.hpp -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/cls_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/cls_process.cc -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/cls_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/cls_process.h -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/db_post_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/db_post_process.cc -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/db_post_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/db_post_process.h -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/det_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/det_process.cc -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/det_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/det_process.h -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/pipeline.cc -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/pipeline.h -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/rec_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/rec_process.cc -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/rec_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/rec_process.h -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/utils.cc -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/cpp/utils.h -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable-xxhdpi-v4/btn_switch_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable-xxhdpi-v4/btn_switch_default.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable-xxhdpi-v4/btn_switch_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable-xxhdpi-v4/btn_switch_pressed.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_settings.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_settings_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_settings_default.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_settings_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_settings_pressed.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_shutter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_shutter.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_shutter_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_shutter_default.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_shutter_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_shutter_pressed.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/btn_switch.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/layout-land/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/layout-land/activity_main.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/menu/menu_action_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/menu/menu_action_options.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/build.gradle -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/gradle.properties -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/gradlew -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/gradlew.bat -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/app/cxx/ppocr_demo/prepare.sh -------------------------------------------------------------------------------- /ocr/android/app/cxx/ppocr_demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/README.md -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/build.sh -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/run.sh -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/clipper.cpp -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/clipper.hpp -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/cls_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/cls_process.cc -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/cls_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/cls_process.h -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/db_post_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/db_post_process.cc -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/db_post_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/db_post_process.h -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/det_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/det_process.cc -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/det_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/det_process.h -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/pipeline.cc -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/pipeline.h -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/rec_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/rec_process.cc -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/rec_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/rec_process.h -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/utils.cc -------------------------------------------------------------------------------- /ocr/android/shell/ppocr_demo/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/android/shell/ppocr_demo/src/utils.h -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/README.md -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/build.sh -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/run.sh -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/CMakeLists.txt -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/clipper.cpp -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/clipper.hpp -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/cls_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/cls_process.cc -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/cls_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/cls_process.h -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/db_post_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/db_post_process.cc -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/db_post_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/db_post_process.h -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/det_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/det_process.cc -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/det_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/det_process.h -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/pipeline.cc -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/pipeline.h -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/rec_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/rec_process.cc -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/rec_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/rec_process.h -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/utils.cc -------------------------------------------------------------------------------- /ocr/armlinux/shell/cxx/ppocr_demo/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/armlinux/shell/cxx/ppocr_demo/src/utils.h -------------------------------------------------------------------------------- /ocr/assets/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/assets/config.txt -------------------------------------------------------------------------------- /ocr/assets/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/assets/download.sh -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo.xcodeproj/xcshareddata/xcschemes/detection_demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo.xcodeproj/xcshareddata/xcschemes/detection_demo.xcscheme -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo.xcodeproj/xcshareddata/xcschemes/ppocr_demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo.xcodeproj/xcshareddata/xcschemes/ppocr_demo.xcscheme -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/AppDelegate.h -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/AppDelegate.m -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/Info.plist -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/README.md -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/ViewController.h -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/ViewController.mm -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/clipper.cpp -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/clipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/clipper.h -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/clipper.hpp -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/clipper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/clipper.mm -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/cls_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/cls_process.cc -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/cls_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/cls_process.h -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/config.txt -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/db_post_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/db_post_process.cc -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/db_post_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/db_post_process.h -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/det_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/det_process.cc -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/det_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/det_process.h -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/main.m -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/pipeline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/pipeline.cc -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/pipeline.h -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/rec_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/rec_process.cc -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/rec_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/rec_process.h -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/third-party/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/timer.h -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/utils.cc -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/ppocr_demo/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/ppocr_demo/utils.h -------------------------------------------------------------------------------- /ocr/ios/ppocr_demo/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/ocr/ios/ppocr_demo/prepare.sh -------------------------------------------------------------------------------- /pose_detection/assets/images/posedet_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/pose_detection/assets/images/posedet_demo.jpg -------------------------------------------------------------------------------- /pose_detection/assets/models/models.txt: -------------------------------------------------------------------------------- 1 | PP_TinyPose_128x96_qat_dis_nopact 2 | -------------------------------------------------------------------------------- /pose_detection/linux/download_models_and_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/pose_detection/linux/download_models_and_libs.sh -------------------------------------------------------------------------------- /pose_detection/linux/tiny_pose/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/pose_detection/linux/tiny_pose/CMakeLists.txt -------------------------------------------------------------------------------- /pose_detection/linux/tiny_pose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/pose_detection/linux/tiny_pose/README.md -------------------------------------------------------------------------------- /pose_detection/linux/tiny_pose/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/pose_detection/linux/tiny_pose/build.sh -------------------------------------------------------------------------------- /pose_detection/linux/tiny_pose/pose_detection_demo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/pose_detection/linux/tiny_pose/pose_detection_demo.cc -------------------------------------------------------------------------------- /pose_detection/linux/tiny_pose/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/pose_detection/linux/tiny_pose/run.sh -------------------------------------------------------------------------------- /tools/ci_tools/android_demo_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/tools/ci_tools/android_demo_ci.sh -------------------------------------------------------------------------------- /tools/codestyle/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/codestyle/clang_format.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/tools/codestyle/clang_format.hook -------------------------------------------------------------------------------- /tools/codestyle/copyright.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/tools/codestyle/copyright.hook -------------------------------------------------------------------------------- /tools/codestyle/cpplint_pre_commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/tools/codestyle/cpplint_pre_commit.hook -------------------------------------------------------------------------------- /tools/codestyle/docstring_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/tools/codestyle/docstring_checker.py -------------------------------------------------------------------------------- /tools/codestyle/pylint_pre_commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/tools/codestyle/pylint_pre_commit.hook -------------------------------------------------------------------------------- /tools/codestyle/test_docstring_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite-Demo/HEAD/tools/codestyle/test_docstring_checker.py --------------------------------------------------------------------------------