├── README.md ├── android_app └── android_app │ ├── .gitignore │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── surendramaran │ │ │ └── yolov8tflite │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── labels.txt │ │ │ └── model.tflite │ │ ├── java │ │ │ └── com │ │ │ │ └── surendramaran │ │ │ │ └── yolov8tflite │ │ │ │ ├── BoundingBox.kt │ │ │ │ ├── Constants.kt │ │ │ │ ├── Detector.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── OverlayView.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── surendramaran │ │ └── yolov8tflite │ │ └── ExampleUnitTest.kt │ ├── build.gradle.kts │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle.kts ├── test_images └── b.jpg ├── train_export_yolov8_model.ipynb └── update.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/README.md -------------------------------------------------------------------------------- /android_app/android_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/.gitignore -------------------------------------------------------------------------------- /android_app/android_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/README.md -------------------------------------------------------------------------------- /android_app/android_app/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android_app/android_app/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/build.gradle.kts -------------------------------------------------------------------------------- /android_app/android_app/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/proguard-rules.pro -------------------------------------------------------------------------------- /android_app/android_app/app/src/androidTest/java/com/surendramaran/yolov8tflite/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/androidTest/java/com/surendramaran/yolov8tflite/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/assets/labels.txt: -------------------------------------------------------------------------------- 1 | fork 2 | knife 3 | plate 4 | spoon -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/assets/model.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/assets/model.tflite -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/java/com/surendramaran/yolov8tflite/BoundingBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/java/com/surendramaran/yolov8tflite/BoundingBox.kt -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/java/com/surendramaran/yolov8tflite/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/java/com/surendramaran/yolov8tflite/Constants.kt -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/java/com/surendramaran/yolov8tflite/Detector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/java/com/surendramaran/yolov8tflite/Detector.kt -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/java/com/surendramaran/yolov8tflite/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/java/com/surendramaran/yolov8tflite/MainActivity.kt -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/java/com/surendramaran/yolov8tflite/OverlayView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/java/com/surendramaran/yolov8tflite/OverlayView.kt -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /android_app/android_app/app/src/test/java/com/surendramaran/yolov8tflite/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/app/src/test/java/com/surendramaran/yolov8tflite/ExampleUnitTest.kt -------------------------------------------------------------------------------- /android_app/android_app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/build.gradle.kts -------------------------------------------------------------------------------- /android_app/android_app/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/gradle.properties -------------------------------------------------------------------------------- /android_app/android_app/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android_app/android_app/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android_app/android_app/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/gradlew -------------------------------------------------------------------------------- /android_app/android_app/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/gradlew.bat -------------------------------------------------------------------------------- /android_app/android_app/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/android_app/android_app/settings.gradle.kts -------------------------------------------------------------------------------- /test_images/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/test_images/b.jpg -------------------------------------------------------------------------------- /train_export_yolov8_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/train_export_yolov8_model.ipynb -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AarohiSingla/Object-Detection-Android-App/HEAD/update.py --------------------------------------------------------------------------------