1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| #include "CaptureCamera.h"
|
| CaptureCamera::CaptureCamera() :
| pipeLine(nullptr), windowRender(nullptr), live_thid(0), running(false),
| cameraUri("")
| {}
|
| CaptureCamera::~CaptureCamera()
| {
|
| }
|
| bool CaptureCamera::start()
| {
| }
|
| void CaptureCamera::stop()
| {
|
| }
|
| bool CaptureCamera::getImage(std::vector<NativeImgIdx>& imgIdxes, uint8_t* buffImg, size_t& buffImgMaxSize)
| {
|
| }
|
|