// // Created by Scheaven on 2020/11/2. // #ifndef TYPE_UTILS_H #define TYPE_UTILS_H #include #include #include #include #include #include #include //bytes流转化文件 struct ReID_Utils{ public: // template // unsigned char * T2bytes(T u); // template // T bytes2T(unsigned char *bytes); unsigned char * T2bytes(float u); float bytes2T(unsigned char *bytes); }; char* get_subStr(std::string line, const char* split, int which); #endif //TYPE_UTILS_H