C++养成好的代码习惯
【C++小技巧】
-------------------------------------------------------------
#ifdef _DEBUG
imwrite("binary.jpg", img);
#endif
----------------------------------------------------------------
清理内存
.release();
chars_set.clear();
chars_set.shrink_to_fit();
----------------------------------------------------------------