8 Star 40 Fork 23

ZVision / UVCCapture

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
VideoCaptureCallback.h 459 Bytes
一键复制 编辑 原始数据 按行查看 历史
/*
* Copyright (c) 2020-2022 https://gitee.com/fsfzp888/UVCCapture
* All rights reserved
*/
#ifndef VIDEO_CAPTURE_CALLBACK_H
#define VIDEO_CAPTURE_CALLBACK_H
#include <functional>
class VideoDevice;
/**
* @brief An interface for a function that process video frames
*
* @param data
* @param len
* @param dev
*/
typedef std::function<void(unsigned char *data, int len, VideoDevice *dev)> VideoCaptureCallback;
#endif // VIDEO_CAPTURE_CALLBACK_H
C++
1
https://gitee.com/fsfzp888/UVCCapture.git
git@gitee.com:fsfzp888/UVCCapture.git
fsfzp888
UVCCapture
UVCCapture
master

搜索帮助