123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #ifndef OPENCV_DATASETS_HPE_HUMANEVA_HPP
- #define OPENCV_DATASETS_HPE_HUMANEVA_HPP
- #include <string>
- #include <vector>
- #include "opencv2/datasets/dataset.hpp"
- #include <opencv2/core.hpp>
- namespace cv
- {
- namespace datasets
- {
- struct HPE_humanevaObj : public Object
- {
- char person;
- std::string action;
- int type1;
- std::string type2;
- Matx13d ofs;
- std::string fileName;
- std::vector<std::string> imageNames;
- };
- enum datasetType
- {
- humaneva_1 = 1,
- humaneva_2
- };
- class CV_EXPORTS HPE_humaneva : public Dataset
- {
- public:
- virtual void load(const std::string &path) = 0;
- static Ptr<HPE_humaneva> create(int num=humaneva_1);
- };
- }
- }
- #endif
|