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
  • src
  • common
  • stream_data.h
  • 完成轨迹定时抓拍
    0b4cd5d5
    Hu Chunming authored
    2023-05-15 11:11:16 +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