├── .gitignore ├── LICENSE ├── README.md ├── addon_config.mk ├── libs └── INSTALL.md ├── ofxaddons_thumbnail.png └── src ├── ofxGFNet.cpp └── ofxGFNet.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbertfrancois/ofxGFTensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbertfrancois/ofxGFTensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbertfrancois/ofxGFTensorflow/HEAD/README.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbertfrancois/ofxGFTensorflow/HEAD/addon_config.mk -------------------------------------------------------------------------------- /libs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbertfrancois/ofxGFTensorflow/HEAD/libs/INSTALL.md -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbertfrancois/ofxGFTensorflow/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/ofxGFNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbertfrancois/ofxGFTensorflow/HEAD/src/ofxGFNet.cpp -------------------------------------------------------------------------------- /src/ofxGFNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilbertfrancois/ofxGFTensorflow/HEAD/src/ofxGFNet.h --------------------------------------------------------------------------------