https://github.com/czoido/tensorflow-cpp-conan-example
Example with tensorflow lite library in C++ using Conan for image classification
https://github.com/czoido/tensorflow-cpp-conan-example
cpp machine-learning opencv tensorflow
Last synced: about 2 months ago
JSON representation
Example with tensorflow lite library in C++ using Conan for image classification
- Host: GitHub
- URL: https://github.com/czoido/tensorflow-cpp-conan-example
- Owner: czoido
- Created: 2022-10-20T06:44:06.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-16T12:58:44.000Z (about 3 years ago)
- Last Synced: 2025-04-03T08:14:57.888Z (about 1 year ago)
- Topics: cpp, machine-learning, opencv, tensorflow
- Language: C++
- Homepage:
- Size: 124 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: licenses/mobilenet_v1_1.0_224_quant_tflite_LICENSE.txt
Awesome Lists containing this project
README
# Create with Conan
This repo has a more updated version in the conan-io/examples2 repo: https://github.com/conan-io/examples2/tree/main/examples/libraries/tensorflow-lite/pose-estimation
Also read the related blogpost: https://blog.conan.io/2023/05/11/tensorflow-lite-cpp-mobile-ml-guide.html
Better use with Conan 2.0
```
conan create .
```
# Run locally with Xcode
```
mkdir build && cd build
conan install .. -s build_type=Release --build=missing -c tools.cmake.cmaketoolchain:generator=Xcode
conan install .. -s build_type=Debug --build=missing -c tools.cmake.cmaketoolchain:generator=Xcode
cmake .. -G Xcode -DCMAKE_TOOLCHAIN_FILE=generators/conan_toolchain.cmake
```
open tflite-example.xcodeproj project