12345678910111213141516171819 |
- //
- // Created by lloyd on 2020/9/28.
- //
- #ifndef GTCVR_GTIMGCREATOR_H
- #define GTCVR_GTIMGCREATOR_H
- class gtimgcreator {
- public:
- void creatGTMat(cv::Mat &mat1, cv::Mat &mat2, int matrows, int matcols, std::vector<std::vector<int>> >data1,
- std::vector<std::vector<int>> >data2, int pxcount, int oneImg);
- };
- #endif //GTCVR_GTIMGCREATOR_H
|