| 12 | constexpr int g_kMnistImageByteSize = 28 * 28; |
| 13 | |
| 14 | void EndianSwap(unsigned int &x) |
| 15 | { |
| 16 | x = (x >> 24) | ((x << 8) & 0x00FF0000) | ((x >> 8) & 0x0000FF00) | (x << 24); |
| 17 | } |
| 18 | |
| 19 | MnistDatabase::MnistDatabase(const std::string& binaryFileDirectory, bool scaleValues) |
| 20 | : m_BinaryDirectory(binaryFileDirectory) |