| 93 | bool ReadFileToDatum(const string& filename, const int label, Datum* datum); |
| 94 | |
| 95 | inline bool ReadFileToDatum(const string& filename, Datum* datum) { |
| 96 | return ReadFileToDatum(filename, -1, datum); |
| 97 | } |
| 98 | |
| 99 | bool ReadImageToDatum(const string& filename, const int label, |
| 100 | const int height, const int width, const bool is_color, |
nothing calls this directly
no outgoing calls
no test coverage detected