1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /*M
- #ifndef OPENCV_DATASETS_PD_CALTECH_HPP
- #define OPENCV_DATASETS_PD_CALTECH_HPP
- #include <string>
- #include <vector>
- #include "opencv2/datasets/dataset.hpp"
- #include <opencv2/core.hpp>
- namespace cv
- {
- namespace datasets
- {
- struct PD_caltechObj : public Object
- {
-
-
- std::string name;
- std::vector< std::string > imageNames;
- };
- class CV_EXPORTS PD_caltech : public Dataset
- {
- public:
- virtual void load(const std::string &path) = 0;
- static Ptr<PD_caltech> create();
- };
- }
- }
- #endif
|