123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /*M
- #ifndef OPENCV_DATASETS_PD_INRIA_HPP
- #define OPENCV_DATASETS_PD_INRIA_HPP
- #include <string>
- #include <vector>
- #include "opencv2/datasets/dataset.hpp"
- #include <opencv2/core.hpp>
- namespace cv
- {
- namespace datasets
- {
- enum sampleType
- {
- POS = 0,
- NEG = 1
- };
- struct PD_inriaObj : public Object
- {
-
- std::string filename;
-
-
- sampleType sType;
-
- int width;
- int height;
- int depth;
-
- std::vector< Rect > bndboxes;
- };
- class CV_EXPORTS PD_inria : public Dataset
- {
- public:
- virtual void load(const std::string &path) = 0;
- static Ptr<PD_inria> create();
- };
- }
- }
- #endif
|