1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| //
| // Created by Scheaven on 2020/1/3.
| //
|
| #ifndef INC_03_REID_STRONG_BASELINE_REID_UTILS_H
| #define INC_03_REID_STRONG_BASELINE_REID_UTILS_H
| #include <torch/script.h>
| #include <fstream>
| #include <string>
| #include <iomanip>
| #include <stdlib.h>
| #include <vector>
| #include <iostream>
|
| using namespace std;
| struct ReID_Utils{
| public:
| float *normalize(unsigned char *vsrc, int w, int h, int chan);
| };
|
|
| #endif //INC_03_REID_STRONG_BASELINE_REID_UTILS_H
|
|