infer.h 194 B

12345678910
  1. #include <opencv2/opencv.hpp>
  2. #include <string>
  3. typedef struct infer_frame{
  4. unsigned char* data;
  5. int width;
  6. int height;
  7. int channels;
  8. int type;
  9. } INFER_FRAME,*LPINFER_FRAME;