1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- #ifndef OPENCV_DATASETS_IR_ROBOT_HPP
- #define OPENCV_DATASETS_IR_ROBOT_HPP
- #include <string>
- #include <vector>
- #include "opencv2/datasets/dataset.hpp"
- #include <opencv2/core.hpp>
- namespace cv
- {
- namespace datasets
- {
- struct cameraPos
- {
- std::vector<std::string> images;
- };
- struct IR_robotObj : public Object
- {
- std::string name;
- std::vector<cameraPos> pos;
- };
- class CV_EXPORTS IR_robot : public Dataset
- {
- public:
- virtual void load(const std::string &path) = 0;
- static Ptr<IR_robot> create();
- };
- }
- }
- #endif
|