| 31 | unsigned int m_FileIndex; |
| 32 | |
| 33 | static void saveIncreaseMat(const cv::Mat &mat) { |
| 34 | #ifdef SAVE_MAT |
| 35 | std::string fileName = std::to_string(m_FileIndex); |
| 36 | saveMat(mat, fileName); |
| 37 | m_FileIndex++; |
| 38 | #endif |
| 39 | } |
| 40 | |
| 41 | |
| 42 | CZXING_END_NAMESPACE() |