1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*M
- #ifndef OPENCV_DATASETS_UTIL_HPP
- #define OPENCV_DATASETS_UTIL_HPP
- #include <string>
- #include <vector>
- #include <cstdio>
- #include <cstdlib>
- #include <fstream>
- #include <opencv2/core.hpp>
- namespace cv
- {
- namespace datasets
- {
- void CV_EXPORTS split(const std::string &s, std::vector<std::string> &elems, char delim);
- void CV_EXPORTS createDirectory(const std::string &path);
- void CV_EXPORTS getDirList(const std::string &dirName, std::vector<std::string> &fileNames);
- }
- }
- #endif
|