-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Libbackscrub - separation into library and wrapper application (#86)
* Initial separation of Tensorflow code into reusable static library * position independent code required to allow use in shared libraries * libdeepseg -> libbackscrub * Debug callback, library cleanup function * CMake build of separate library * Export dependencies from backscrub library for use in other projects * regression fix: use normalization values for model * Re-structure into more modular build * Install headers to sub-folder * TFBASE->TENSORFLOW in Makefile * Remove using namespace tflite * Dependency fix for parallel builds * remove TFLITE_MINIMAL_CHECK macro from API * Remove hack to include libtensorflow-lite.a in libbackscrub.a * Removed shared state between app and lib, now all hidden in lib. Prefixed lib function names * Avoid full data clone for mask output * Remove stdarg from debug callback, cleanup pointer checks
- Loading branch information
Showing
10 changed files
with
526 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# Output folder | ||
# Output folders | ||
bin/ | ||
build/ | ||
|
||
# dotfiles and folders | ||
.*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.