├── Digit Classifier ├── Project1.dpr ├── Project1.dproj ├── Project1.res ├── Unit1.dfm ├── Unit1.pas ├── Win64 │ └── Debug │ │ ├── Project1.exe │ │ ├── mnist.tflite │ │ ├── mnist1.tflite │ │ ├── mnist2.tflite │ │ ├── mnist3.tflite │ │ └── tflite.dll └── screenshots │ ├── screenshot1.jpg │ ├── screenshot2.jpg │ ├── screenshot3.jpg │ ├── screenshot4.jpg │ ├── screenshot5.jpg │ └── screenshot6.jpg ├── Face Detection ├── Project1.dpr ├── Project1.dproj ├── Project1.res ├── Unit1.dfm ├── Unit1.pas ├── Win64 │ └── Debug │ │ ├── Project1.exe │ │ ├── face_detect.tflite │ │ ├── test.bmp │ │ ├── test2.bmp │ │ ├── test3.bmp │ │ └── tflite.dll └── screenshots │ ├── screenshot1.jpg │ ├── screenshot2.jpg │ └── screenshot4.jpg ├── Object Detection ├── Project1.dpr ├── Project1.dproj ├── Project1.res ├── Unit1.dfm ├── Unit1.pas ├── Win64 │ └── Debug │ │ ├── Project1.exe │ │ ├── detect.tflite │ │ ├── labelmap.txt │ │ ├── test0.bmp │ │ ├── test1.bmp │ │ ├── test2.bmp │ │ ├── test3.bmp │ │ ├── test4.bmp │ │ └── tflite.dll └── screenshots │ ├── screenshot1.jpg │ ├── screenshot2.jpg │ ├── screenshot3.jpg │ ├── screenshot4.jpg │ └── screenshot5.jpg └── README.md /Digit Classifier/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/Project1.dpr -------------------------------------------------------------------------------- /Digit Classifier/Project1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/Project1.dproj -------------------------------------------------------------------------------- /Digit Classifier/Project1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/Project1.res -------------------------------------------------------------------------------- /Digit Classifier/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/Unit1.dfm -------------------------------------------------------------------------------- /Digit Classifier/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/Unit1.pas -------------------------------------------------------------------------------- /Digit Classifier/Win64/Debug/Project1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/Win64/Debug/Project1.exe -------------------------------------------------------------------------------- /Digit Classifier/Win64/Debug/mnist.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/Win64/Debug/mnist.tflite -------------------------------------------------------------------------------- /Digit Classifier/Win64/Debug/mnist1.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/Win64/Debug/mnist1.tflite -------------------------------------------------------------------------------- /Digit Classifier/Win64/Debug/mnist2.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/Win64/Debug/mnist2.tflite -------------------------------------------------------------------------------- /Digit Classifier/Win64/Debug/mnist3.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/Win64/Debug/mnist3.tflite -------------------------------------------------------------------------------- /Digit Classifier/Win64/Debug/tflite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/Win64/Debug/tflite.dll -------------------------------------------------------------------------------- /Digit Classifier/screenshots/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/screenshots/screenshot1.jpg -------------------------------------------------------------------------------- /Digit Classifier/screenshots/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/screenshots/screenshot2.jpg -------------------------------------------------------------------------------- /Digit Classifier/screenshots/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/screenshots/screenshot3.jpg -------------------------------------------------------------------------------- /Digit Classifier/screenshots/screenshot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/screenshots/screenshot4.jpg -------------------------------------------------------------------------------- /Digit Classifier/screenshots/screenshot5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/screenshots/screenshot5.jpg -------------------------------------------------------------------------------- /Digit Classifier/screenshots/screenshot6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Digit Classifier/screenshots/screenshot6.jpg -------------------------------------------------------------------------------- /Face Detection/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/Project1.dpr -------------------------------------------------------------------------------- /Face Detection/Project1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/Project1.dproj -------------------------------------------------------------------------------- /Face Detection/Project1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/Project1.res -------------------------------------------------------------------------------- /Face Detection/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/Unit1.dfm -------------------------------------------------------------------------------- /Face Detection/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/Unit1.pas -------------------------------------------------------------------------------- /Face Detection/Win64/Debug/Project1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/Win64/Debug/Project1.exe -------------------------------------------------------------------------------- /Face Detection/Win64/Debug/face_detect.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/Win64/Debug/face_detect.tflite -------------------------------------------------------------------------------- /Face Detection/Win64/Debug/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/Win64/Debug/test.bmp -------------------------------------------------------------------------------- /Face Detection/Win64/Debug/test2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/Win64/Debug/test2.bmp -------------------------------------------------------------------------------- /Face Detection/Win64/Debug/test3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/Win64/Debug/test3.bmp -------------------------------------------------------------------------------- /Face Detection/Win64/Debug/tflite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/Win64/Debug/tflite.dll -------------------------------------------------------------------------------- /Face Detection/screenshots/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/screenshots/screenshot1.jpg -------------------------------------------------------------------------------- /Face Detection/screenshots/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/screenshots/screenshot2.jpg -------------------------------------------------------------------------------- /Face Detection/screenshots/screenshot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Face Detection/screenshots/screenshot4.jpg -------------------------------------------------------------------------------- /Object Detection/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Project1.dpr -------------------------------------------------------------------------------- /Object Detection/Project1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Project1.dproj -------------------------------------------------------------------------------- /Object Detection/Project1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Project1.res -------------------------------------------------------------------------------- /Object Detection/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Unit1.dfm -------------------------------------------------------------------------------- /Object Detection/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Unit1.pas -------------------------------------------------------------------------------- /Object Detection/Win64/Debug/Project1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Win64/Debug/Project1.exe -------------------------------------------------------------------------------- /Object Detection/Win64/Debug/detect.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Win64/Debug/detect.tflite -------------------------------------------------------------------------------- /Object Detection/Win64/Debug/labelmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Win64/Debug/labelmap.txt -------------------------------------------------------------------------------- /Object Detection/Win64/Debug/test0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Win64/Debug/test0.bmp -------------------------------------------------------------------------------- /Object Detection/Win64/Debug/test1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Win64/Debug/test1.bmp -------------------------------------------------------------------------------- /Object Detection/Win64/Debug/test2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Win64/Debug/test2.bmp -------------------------------------------------------------------------------- /Object Detection/Win64/Debug/test3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Win64/Debug/test3.bmp -------------------------------------------------------------------------------- /Object Detection/Win64/Debug/test4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Win64/Debug/test4.bmp -------------------------------------------------------------------------------- /Object Detection/Win64/Debug/tflite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/Win64/Debug/tflite.dll -------------------------------------------------------------------------------- /Object Detection/screenshots/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/screenshots/screenshot1.jpg -------------------------------------------------------------------------------- /Object Detection/screenshots/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/screenshots/screenshot2.jpg -------------------------------------------------------------------------------- /Object Detection/screenshots/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/screenshots/screenshot3.jpg -------------------------------------------------------------------------------- /Object Detection/screenshots/screenshot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/screenshots/screenshot4.jpg -------------------------------------------------------------------------------- /Object Detection/screenshots/screenshot5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/Object Detection/screenshots/screenshot5.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq33095304/TensorFlow-Lite-Delphi-/HEAD/README.md --------------------------------------------------------------------------------