123456789101112131415161718192021222324252627 |
- #pragma once
- #include <iostream>
- #include <list>
- struct Density
- {
- int CatId;
- int num;
- int Crowdedness;
- };
- struct StreamInferData
- {
- std::string uri;
- int num;
- };
- class InferData
- {
- private:
- public:
- InferData(){};
- ~InferData(){};
- int CarId;
- list<StreamInferData> data;
- };
|