├── .cproject ├── .gitignore ├── .project ├── .settings └── language.settings.xml ├── LICENSE ├── Makefile ├── Makefile.config.example ├── README.md ├── include ├── benchmark.hpp ├── caffe_neural_tool.hpp ├── filesystem_utils.hpp ├── image_processor.hpp ├── process.hpp ├── tiffio_wrapper.hpp ├── train.hpp └── utils.hpp ├── proto └── caffetool.proto └── src ├── benchmark.cpp ├── caffe_neural_tool.cpp ├── filesystem_utils.cpp ├── image_processor.cpp ├── process.cpp ├── tiffio_wrapper.cpp ├── train.cpp └── utils.cpp /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .settings/ 3 | Makefile.config 4 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/.project -------------------------------------------------------------------------------- /.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/.settings/language.settings.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/Makefile.config.example -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/README.md -------------------------------------------------------------------------------- /include/benchmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/include/benchmark.hpp -------------------------------------------------------------------------------- /include/caffe_neural_tool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/include/caffe_neural_tool.hpp -------------------------------------------------------------------------------- /include/filesystem_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/include/filesystem_utils.hpp -------------------------------------------------------------------------------- /include/image_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/include/image_processor.hpp -------------------------------------------------------------------------------- /include/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/include/process.hpp -------------------------------------------------------------------------------- /include/tiffio_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/include/tiffio_wrapper.hpp -------------------------------------------------------------------------------- /include/train.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/include/train.hpp -------------------------------------------------------------------------------- /include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/include/utils.hpp -------------------------------------------------------------------------------- /proto/caffetool.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/proto/caffetool.proto -------------------------------------------------------------------------------- /src/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/src/benchmark.cpp -------------------------------------------------------------------------------- /src/caffe_neural_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/src/caffe_neural_tool.cpp -------------------------------------------------------------------------------- /src/filesystem_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/src/filesystem_utils.cpp -------------------------------------------------------------------------------- /src/image_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/src/image_processor.cpp -------------------------------------------------------------------------------- /src/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/src/process.cpp -------------------------------------------------------------------------------- /src/tiffio_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/src/tiffio_wrapper.cpp -------------------------------------------------------------------------------- /src/train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/src/train.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naibaf7/caffe_neural_tool/HEAD/src/utils.cpp --------------------------------------------------------------------------------