├── .github └── workflows │ └── flutter_drive.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── tfliteflutter │ └── tflite_flutter_plugin │ └── TfliteFlutterPlugin.java ├── docs └── tflite_flutter_cover.png ├── example ├── .gitignore ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── tfliteflutter │ │ │ │ │ └── tflite_flutter_plugin_example │ │ │ │ │ └── MainActivity.java │ │ │ ├── jniLibs │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ │ ├── armeabi-v7a │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ │ ├── x86 │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ │ └── x86_64 │ │ │ │ │ └── libtensorflowlite_c.so │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── test │ │ ├── add.bin │ │ ├── bad_model.tflite │ │ ├── int32.bin │ │ ├── int64.bin │ │ ├── mobilenet_quant.tflite │ │ ├── multi_add.bin │ │ ├── permute_uint8.tflite │ │ └── string.bin │ ├── text_classification.tflite │ └── text_classification_vocab.txt ├── blobs │ ├── libtensorflowlite_c-linux.so │ ├── libtensorflowlite_c-macos.dylib │ └── libtensorflowlite_c-win.dll ├── demo.gif ├── install.sh ├── integration_test │ └── tflite_flutter_test.dart ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── classifier.dart │ └── main.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ └── MainMenu.xib │ │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml ├── test_driver │ └── integration_test.dart └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ ├── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ │ └── app_icon.ico │ ├── run_loop.cpp │ ├── run_loop.h │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h │ └── tensorflowlite_c.dll ├── install.bat ├── install.sh ├── ios ├── .gitignore ├── Assets │ └── .gitkeep ├── Classes │ ├── SwiftTfliteFlutter.swift │ ├── TfliteFlutterPlugin.h │ └── TfliteFlutterPlugin.m └── tflite_flutter.podspec ├── lib ├── src │ ├── bindings │ │ ├── bindings.dart │ │ ├── delegates │ │ │ ├── coreml_delegate.dart │ │ │ ├── gpu_delegate.dart │ │ │ ├── metal_delegate.dart │ │ │ └── xnnpack_delegate.dart │ │ ├── dlib.dart │ │ ├── interpreter.dart │ │ ├── interpreter_options.dart │ │ ├── model.dart │ │ ├── tensor.dart │ │ └── types.dart │ ├── delegate.dart │ ├── delegates │ │ ├── coreml_delegate.dart │ │ ├── gpu_delegate.dart │ │ ├── metal_delegate.dart │ │ └── xnnpack_delegate.dart │ ├── ffi │ │ └── helper.dart │ ├── interpreter.dart │ ├── interpreter_options.dart │ ├── model.dart │ ├── quanitzation_params.dart │ ├── tensor.dart │ └── util │ │ ├── byte_conversion_utils.dart │ │ └── list_shape_extension.dart └── tflite_flutter.dart ├── linux ├── CMakeLists.txt ├── include │ └── tflite_flutter │ │ └── tflite_flutter_plugin.h └── tflite_flutter_plugin.cc ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ └── Flutter-Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon_1024.png │ │ ├── app_icon_128.png │ │ ├── app_icon_16.png │ │ ├── app_icon_256.png │ │ ├── app_icon_32.png │ │ ├── app_icon_512.png │ │ └── app_icon_64.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── pubspec.yaml ├── tflite_flutter_plugin.iml └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter └── CMakeLists.txt ├── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources │ └── app_icon.ico ├── run_loop.cpp ├── run_loop.h ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h └── tensorflowlite_c.dll /.github/workflows/flutter_drive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/.github/workflows/flutter_drive.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'tflite_flutter_plugin' 2 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/tfliteflutter/tflite_flutter_plugin/TfliteFlutterPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/android/src/main/java/com/tfliteflutter/tflite_flutter_plugin/TfliteFlutterPlugin.java -------------------------------------------------------------------------------- /docs/tflite_flutter_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/docs/tflite_flutter_cover.png -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/tfliteflutter/tflite_flutter_plugin_example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/java/com/tfliteflutter/tflite_flutter_plugin_example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/jniLibs/arm64-v8a/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/jniLibs/arm64-v8a/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/android/app/src/main/jniLibs/armeabi-v7a/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/jniLibs/armeabi-v7a/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/android/app/src/main/jniLibs/x86/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/jniLibs/x86/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/android/app/src/main/jniLibs/x86_64/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/jniLibs/x86_64/libtensorflowlite_c.so -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/assets/test/add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/assets/test/add.bin -------------------------------------------------------------------------------- /example/assets/test/bad_model.tflite: -------------------------------------------------------------------------------- 1 | I don't know what I'm doing! 2 | -------------------------------------------------------------------------------- /example/assets/test/int32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/assets/test/int32.bin -------------------------------------------------------------------------------- /example/assets/test/int64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/assets/test/int64.bin -------------------------------------------------------------------------------- /example/assets/test/mobilenet_quant.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/assets/test/mobilenet_quant.tflite -------------------------------------------------------------------------------- /example/assets/test/multi_add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/assets/test/multi_add.bin -------------------------------------------------------------------------------- /example/assets/test/permute_uint8.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/assets/test/permute_uint8.tflite -------------------------------------------------------------------------------- /example/assets/test/string.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/assets/test/string.bin -------------------------------------------------------------------------------- /example/assets/text_classification.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/assets/text_classification.tflite -------------------------------------------------------------------------------- /example/assets/text_classification_vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/assets/text_classification_vocab.txt -------------------------------------------------------------------------------- /example/blobs/libtensorflowlite_c-linux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/blobs/libtensorflowlite_c-linux.so -------------------------------------------------------------------------------- /example/blobs/libtensorflowlite_c-macos.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/blobs/libtensorflowlite_c-macos.dylib -------------------------------------------------------------------------------- /example/blobs/libtensorflowlite_c-win.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/blobs/libtensorflowlite_c-win.dll -------------------------------------------------------------------------------- /example/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/demo.gif -------------------------------------------------------------------------------- /example/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/install.sh -------------------------------------------------------------------------------- /example/integration_test/tflite_flutter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/integration_test/tflite_flutter_test.dart -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/lib/classifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/lib/classifier.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/linux/main.cc -------------------------------------------------------------------------------- /example/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/linux/my_application.cc -------------------------------------------------------------------------------- /example/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/linux/my_application.h -------------------------------------------------------------------------------- /example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/.gitignore -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /example/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test_driver/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/test_driver/integration_test.dart -------------------------------------------------------------------------------- /example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/.gitignore -------------------------------------------------------------------------------- /example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/resource.h -------------------------------------------------------------------------------- /example/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /example/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /example/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/run_loop.h -------------------------------------------------------------------------------- /example/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/utils.h -------------------------------------------------------------------------------- /example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /example/windows/tensorflowlite_c.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/example/windows/tensorflowlite_c.dll -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/install.bat -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/install.sh -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Classes/SwiftTfliteFlutter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/ios/Classes/SwiftTfliteFlutter.swift -------------------------------------------------------------------------------- /ios/Classes/TfliteFlutterPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/ios/Classes/TfliteFlutterPlugin.h -------------------------------------------------------------------------------- /ios/Classes/TfliteFlutterPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/ios/Classes/TfliteFlutterPlugin.m -------------------------------------------------------------------------------- /ios/tflite_flutter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/ios/tflite_flutter.podspec -------------------------------------------------------------------------------- /lib/src/bindings/bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/bindings/bindings.dart -------------------------------------------------------------------------------- /lib/src/bindings/delegates/coreml_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/bindings/delegates/coreml_delegate.dart -------------------------------------------------------------------------------- /lib/src/bindings/delegates/gpu_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/bindings/delegates/gpu_delegate.dart -------------------------------------------------------------------------------- /lib/src/bindings/delegates/metal_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/bindings/delegates/metal_delegate.dart -------------------------------------------------------------------------------- /lib/src/bindings/delegates/xnnpack_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/bindings/delegates/xnnpack_delegate.dart -------------------------------------------------------------------------------- /lib/src/bindings/dlib.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/bindings/dlib.dart -------------------------------------------------------------------------------- /lib/src/bindings/interpreter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/bindings/interpreter.dart -------------------------------------------------------------------------------- /lib/src/bindings/interpreter_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/bindings/interpreter_options.dart -------------------------------------------------------------------------------- /lib/src/bindings/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/bindings/model.dart -------------------------------------------------------------------------------- /lib/src/bindings/tensor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/bindings/tensor.dart -------------------------------------------------------------------------------- /lib/src/bindings/types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/bindings/types.dart -------------------------------------------------------------------------------- /lib/src/delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/delegate.dart -------------------------------------------------------------------------------- /lib/src/delegates/coreml_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/delegates/coreml_delegate.dart -------------------------------------------------------------------------------- /lib/src/delegates/gpu_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/delegates/gpu_delegate.dart -------------------------------------------------------------------------------- /lib/src/delegates/metal_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/delegates/metal_delegate.dart -------------------------------------------------------------------------------- /lib/src/delegates/xnnpack_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/delegates/xnnpack_delegate.dart -------------------------------------------------------------------------------- /lib/src/ffi/helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/ffi/helper.dart -------------------------------------------------------------------------------- /lib/src/interpreter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/interpreter.dart -------------------------------------------------------------------------------- /lib/src/interpreter_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/interpreter_options.dart -------------------------------------------------------------------------------- /lib/src/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/model.dart -------------------------------------------------------------------------------- /lib/src/quanitzation_params.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/quanitzation_params.dart -------------------------------------------------------------------------------- /lib/src/tensor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/tensor.dart -------------------------------------------------------------------------------- /lib/src/util/byte_conversion_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/util/byte_conversion_utils.dart -------------------------------------------------------------------------------- /lib/src/util/list_shape_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/src/util/list_shape_extension.dart -------------------------------------------------------------------------------- /lib/tflite_flutter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/lib/tflite_flutter.dart -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/include/tflite_flutter/tflite_flutter_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/linux/include/tflite_flutter/tflite_flutter_plugin.h -------------------------------------------------------------------------------- /linux/tflite_flutter_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/linux/tflite_flutter_plugin.cc -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /tflite_flutter_plugin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/tflite_flutter_plugin.iml -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/run_loop.h -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/runner/win32_window.h -------------------------------------------------------------------------------- /windows/tensorflowlite_c.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/am15h/tflite_flutter_plugin/HEAD/windows/tensorflowlite_c.dll --------------------------------------------------------------------------------