123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /*M
- #ifndef OPENCV_DATASETS_IS_WEIZMANN_HPP
- #define OPENCV_DATASETS_IS_WEIZMANN_HPP
- #include <string>
- #include <vector>
- #include "opencv2/datasets/dataset.hpp"
- #include <opencv2/core.hpp>
- namespace cv
- {
- namespace datasets
- {
- struct IS_weizmannObj : public Object
- {
- std::string imageName;
- std::string srcBw;
- std::string srcColor;
- std::string humanSeg;
- };
- class CV_EXPORTS IS_weizmann : public Dataset
- {
- public:
- virtual void load(const std::string &path) = 0;
- static Ptr<IS_weizmann> create();
- };
- }
- }
- #endif
|