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