Logo white

Hu Chunming / vpt_ascend

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • vpt_ascend
  • 3rdparty
  • model
  • face_detect
  • test
  • stream_data.h
  • 提交当前使用的人脸检测模型
    c766e4b0
    Hu Chunming authored
    2025-08-06 15:55:50 +0800  
    Browse Code »
stream_data.h 263 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef _STREAM_DATA_H_
#define _STREAM_DATA_H_

#include <memory>

struct ImageData {
    uint32_t width = 0;
    uint32_t height = 0;
    uint32_t alignWidth = 0;
    uint32_t alignHeight = 0;
    uint32_t size = 0;
    std::shared_ptr<uint8_t> data;
};

#endif