123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- #ifndef OPENCV_DATASETS_GR_CHALEARN_HPP
- #define OPENCV_DATASETS_GR_CHALEARN_HPP
- #include <string>
- #include <vector>
- #include "opencv2/datasets/dataset.hpp"
- #include <opencv2/core.hpp>
- namespace cv
- {
- namespace datasets
- {
- struct groundTruth
- {
- int gestureID, initialFrame, lastFrame;
- };
- struct join
- {
- double Wx, Wy, Wz, Rx, Ry, Rz, Rw, Px, Py;
- };
- struct skeleton
- {
- join s[20];
- };
- struct GR_chalearnObj : public Object
- {
- std::string name, nameColor, nameDepth, nameUser;
- int numFrames, fps, depth;
- std::vector<groundTruth> groundTruths;
- std::vector<skeleton> skeletons;
- };
- class CV_EXPORTS GR_chalearn : public Dataset
- {
- public:
- virtual void load(const std::string &path) = 0;
- static Ptr<GR_chalearn> create();
- };
- }
- }
- #endif
|