0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <cstdlib>
#include <iostream>
#include <unistd.h>
#include <dirent.h>
#include <fstream>
#include <cstring>
#include <vector>
#include <sys/types.h>
#include <sys/stat.h>
#include <map>
#include <cstdint>
#include "acl/acl.h"
#include "acl/ops/acl_dvpp.h"
#include "vpc_util.h"
#include "JpegUtil.h"
#include "../decoder/interface/DeviceMemory.hpp"
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
19
|
#include "../common/logger.hpp"
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
20
|
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
21
|
void VPCUtil::release()
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
22
23
24
25
26
27
28
29
|
{
aclError ret;
// ret = aclrtSetDevice(deviceId_);
// aclrtSetCurrentContext(context_);
ret = acldvppDestroyChannel(dvppChannelDesc_);
ret = acldvppDestroyChannelDesc(dvppChannelDesc_);
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
30
31
32
|
if (context_ != nullptr) {
ret = aclrtDestroyContext(context_);
if (ret != ACL_SUCCESS) {
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
33
|
LOG_ERROR("destroy context failed");
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
34
35
36
|
}
context_ = nullptr;
}
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
37
|
LOG_INFO("end to destroy context");
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
38
39
40
|
ret = aclrtResetDevice(deviceId_);
if (ret != ACL_SUCCESS) {
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
41
|
LOG_ERROR("reset device failed");
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
42
|
}
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
43
|
LOG_INFO("end to reset device is %d", deviceId_);
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
44
45
|
}
|
29b64a88
Hu Chunming
添加行人逆行算法
|
46
47
|
vpc_img_info VPCUtil::crop(DeviceMemory *devMem, video_object_info obj) {
|
c692ff9e
Hu Chunming
修正抠图存在绿屏、花屏问题
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
vpc_img_info img_info ;
uint32_t cropSizeWidth = (obj.right - obj.left) / 16 * 16;
uint32_t cropSizeHeight = (obj.bottom - obj.top) / 2 * 2;
uint32_t oddNum = 1;
uint32_t cropLeftOffset = (obj.left + 1) / 2 * 2; // must even
uint32_t cropRightOffset = cropLeftOffset + cropSizeWidth - oddNum; // must odd
uint32_t cropTopOffset = (obj.top + 1) / 2 * 2; // must even
uint32_t cropBottomOffset = cropTopOffset + cropSizeHeight - oddNum; // must odd
if(cropRightOffset <= cropLeftOffset || cropBottomOffset <= cropTopOffset){
return img_info;
}
// LOG_INFO("crop src {} ({}, {}, {}, {})", obj.object_id, obj.left, obj.right, obj.top, obj.bottom);
// LOG_INFO("crop {} ({}, {}, {}, {})", obj.object_id, cropLeftOffset, cropRightOffset, cropTopOffset, cropBottomOffset);
acldvppRoiConfig *cropArea_ = acldvppCreateRoiConfig(cropLeftOffset, cropRightOffset, cropTopOffset, cropBottomOffset);
|
29b64a88
Hu Chunming
添加行人逆行算法
|
67
68
69
70
71
72
73
74
75
|
acldvppPicDesc *vpcInputDesc_ = acldvppCreatePicDesc();
acldvppSetPicDescData(vpcInputDesc_, devMem->getMem());
acldvppSetPicDescFormat(vpcInputDesc_, PIXEL_FORMAT_YUV_SEMIPLANAR_420);
acldvppSetPicDescWidth(vpcInputDesc_, devMem->getWidth());
acldvppSetPicDescHeight(vpcInputDesc_, devMem->getHeight());
acldvppSetPicDescWidthStride(vpcInputDesc_, devMem->getWidthStride());
acldvppSetPicDescHeightStride(vpcInputDesc_, devMem->getHeightStride());
acldvppSetPicDescSize(vpcInputDesc_, devMem->getSize());
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
76
|
/* processdecode */
|
c692ff9e
Hu Chunming
修正抠图存在绿屏、花屏问题
|
77
|
uint32_t vpcOutBufferSize_ = cropSizeWidth * cropSizeHeight * 3 / 2;
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
78
79
80
81
82
|
void *vpcOutBufferDev_ = nullptr;
acldvppMalloc(&vpcOutBufferDev_, vpcOutBufferSize_);
acldvppPicDesc *vpcOutputDesc_ = acldvppCreatePicDesc();
acldvppSetPicDescData(vpcOutputDesc_, vpcOutBufferDev_);
acldvppSetPicDescFormat(vpcOutputDesc_, PIXEL_FORMAT_YUV_SEMIPLANAR_420);
|
c692ff9e
Hu Chunming
修正抠图存在绿屏、花屏问题
|
83
84
85
86
|
acldvppSetPicDescWidth(vpcOutputDesc_, cropSizeWidth);
acldvppSetPicDescHeight(vpcOutputDesc_, cropSizeHeight);
acldvppSetPicDescWidthStride(vpcOutputDesc_, cropSizeWidth);
acldvppSetPicDescHeightStride(vpcOutputDesc_, cropSizeHeight);
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
87
88
|
acldvppSetPicDescSize(vpcOutputDesc_, vpcOutBufferSize_);
|
29b64a88
Hu Chunming
添加行人逆行算法
|
89
90
91
|
aclrtStream stream_;
aclrtCreateStream(&stream_);
int ret = acldvppVpcCropAsync(dvppChannelDesc_, vpcInputDesc_, vpcOutputDesc_, cropArea_, stream_);
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
92
93
|
ret = aclrtSynchronizeStream(stream_);
|
29b64a88
Hu Chunming
添加行人逆行算法
|
94
95
96
97
98
99
|
if (stream_ != nullptr) {
aclrtDestroyStream(stream_);
}
acldvppDestroyPicDesc(vpcInputDesc_);
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
100
101
102
|
/* DestroycropResource */
(void)acldvppDestroyRoiConfig(cropArea_);
cropArea_ = nullptr;
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
103
|
|
29b64a88
Hu Chunming
添加行人逆行算法
|
104
105
106
107
108
109
110
|
img_info.pic_desc = vpcOutputDesc_;
img_info.object_id = obj.object_id;
img_info.task_id = obj.task_id; //该物体属于的任务ID号
img_info.task_frame_count = obj.task_frame_count; //该物体当前出现的帧号
img_info.index = obj.index; //该物体所属类别的编号
img_info.confidence = obj.confidence; //该物体的置信度
|
29b64a88
Hu Chunming
添加行人逆行算法
|
111
112
113
114
115
116
117
|
// (void)acldvppDestroyPicDesc(vpcOutputDesc_);
// vpcOutputDesc_ = nullptr;
// if (vpcOutBufferDev_ != nullptr) {
// (void)acldvppFree(vpcOutBufferDev_);
// vpcOutBufferDev_ = nullptr;
// }
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
118
|
|
29b64a88
Hu Chunming
添加行人逆行算法
|
119
|
return img_info;
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
120
121
|
}
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
122
|
int VPCUtil::init(int32_t devId){
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
123
124
125
|
deviceId_ = devId;
aclError ret;
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
126
127
|
aclrtSetDevice(deviceId_);
aclrtCreateContext(&context_, deviceId_);
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
128
129
130
131
132
133
134
|
// channel 准备
dvppChannelDesc_ = acldvppCreateChannelDesc();
ret = acldvppCreateChannel(dvppChannelDesc_);
}
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
135
|
vector<vpc_img_info> VPCUtil::crop_batch(DeviceMemory *devMem, vector<video_object_info> objs){
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
136
137
138
|
vector<vpc_img_info> vec_img_info;
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
139
140
141
142
143
|
const uint32_t outputBatchSize_ = objs.size();
if(outputBatchSize_ <= 0){
return vec_img_info;
}
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
144
145
146
147
148
149
|
aclError ret;
aclrtSetDevice(deviceId_);
ret = aclrtSetCurrentContext(context_);
// 输入
acldvppBatchPicDesc *vpcInputBatchDesc_ = acldvppCreateBatchPicDesc(1);
|
29b64a88
Hu Chunming
添加行人逆行算法
|
150
151
152
153
|
if (vpcInputBatchDesc_ == nullptr) {
LOG_ERROR("acldvppCreatePicDesc outBatchPicDesc failed");
return vec_img_info;
}
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
154
155
156
157
158
159
160
161
162
|
acldvppPicDesc *vpcInputDesc_ = acldvppGetPicDesc(vpcInputBatchDesc_, 0);
acldvppSetPicDescData(vpcInputDesc_, devMem->getMem());
acldvppSetPicDescFormat(vpcInputDesc_, PIXEL_FORMAT_YUV_SEMIPLANAR_420);
acldvppSetPicDescWidth(vpcInputDesc_, devMem->getWidth());
acldvppSetPicDescHeight(vpcInputDesc_, devMem->getHeight());
acldvppSetPicDescWidthStride(vpcInputDesc_, devMem->getWidthStride());
acldvppSetPicDescHeightStride(vpcInputDesc_, devMem->getHeightStride());
acldvppSetPicDescSize(vpcInputDesc_, devMem->getSize());
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
163
164
165
|
// 输出
acldvppBatchPicDesc *outputBatchPicDesc_ = acldvppCreateBatchPicDesc(outputBatchSize_);
if (outputBatchPicDesc_ == nullptr) {
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
166
|
LOG_ERROR("acldvppCreatePicDesc outBatchPicDesc failed");
|
29b64a88
Hu Chunming
添加行人逆行算法
|
167
|
(void)acldvppDestroyBatchPicDesc(vpcInputBatchDesc_);
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
168
169
170
171
|
return vec_img_info;
}
vector<void *> vecOutPtr_;
acldvppPicDesc *vpcOutputDesc = nullptr;
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
172
173
174
175
|
acldvppRoiConfig *cropAreas[outputBatchSize_];
for (uint32_t i = 0; i < outputBatchSize_; i++) {
video_object_info obj = objs[i];
|
c692ff9e
Hu Chunming
修正抠图存在绿屏、花屏问题
|
176
177
178
|
uint32_t cropSizeWidth = (obj.right - obj.left) / 16 * 16;
uint32_t cropSizeHeight = (obj.bottom - obj.top) / 2 * 2;
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
179
|
uint32_t oddNum = 1;
|
c692ff9e
Hu Chunming
修正抠图存在绿屏、花屏问题
|
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
|
uint32_t cropLeftOffset = (obj.left + 1) / 2 * 2; // must even
uint32_t cropRightOffset = cropLeftOffset + cropSizeWidth - oddNum; // must odd
uint32_t cropTopOffset = (obj.top + 1) / 2 * 2; // must even
uint32_t cropBottomOffset = cropTopOffset + cropSizeHeight - oddNum; // must odd
if(cropRightOffset <= cropLeftOffset || cropBottomOffset <= cropTopOffset){
LOG_ERROR("{} <= {} || {} <= {} ", cropRightOffset, cropLeftOffset, cropBottomOffset, cropTopOffset);
// 释放之前成功的部分 再退出
for(int i = 0; i < vecOutPtr_.size(); i++){
if (vecOutPtr_[i] != nullptr){
acldvppFree(vecOutPtr_[i]);
}
if (cropAreas[i] != nullptr) {
(void)acldvppDestroyRoiConfig(cropAreas[i]);
cropAreas[i] = nullptr;
}
}
return vec_img_info;
}
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
199
200
201
|
cropAreas[i] = acldvppCreateRoiConfig(cropLeftOffset, cropRightOffset, cropTopOffset, cropBottomOffset);
|
c692ff9e
Hu Chunming
修正抠图存在绿屏、花屏问题
|
202
|
uint32_t vpcOutBufferSize_ = cropSizeWidth * cropSizeHeight * 3 / 2;
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
203
204
205
|
void *vpcBatchOutputBufferDev = nullptr;
auto ret = acldvppMalloc(&vpcBatchOutputBufferDev, vpcOutBufferSize_);
if (ret != ACL_SUCCESS) {
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
206
|
LOG_ERROR("acldvppMalloc failed, size = %u, errorCode = %d.", vpcOutBufferSize_, static_cast<int32_t>(ret));
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
207
208
209
210
211
|
// 释放之前成功的部分 再退出
for(int i = 0; i < vecOutPtr_.size(); i++){
if (vecOutPtr_[i] != nullptr){
acldvppFree(vecOutPtr_[i]);
}
|
c692ff9e
Hu Chunming
修正抠图存在绿屏、花屏问题
|
212
213
214
215
|
if (cropAreas[i] != nullptr) {
(void)acldvppDestroyRoiConfig(cropAreas[i]);
cropAreas[i] = nullptr;
}
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
216
217
218
219
220
221
222
|
}
return vec_img_info;
}
vecOutPtr_.push_back(vpcBatchOutputBufferDev);
vpcOutputDesc = acldvppGetPicDesc(outputBatchPicDesc_, i);
(void)acldvppSetPicDescData(vpcOutputDesc, vpcBatchOutputBufferDev);
(void)acldvppSetPicDescFormat(vpcOutputDesc, PIXEL_FORMAT_YUV_SEMIPLANAR_420);
|
c692ff9e
Hu Chunming
修正抠图存在绿屏、花屏问题
|
223
224
225
226
|
(void)acldvppSetPicDescWidth(vpcOutputDesc, cropSizeWidth);
(void)acldvppSetPicDescHeight(vpcOutputDesc, cropSizeHeight);
(void)acldvppSetPicDescWidthStride(vpcOutputDesc, cropSizeWidth);
(void)acldvppSetPicDescHeightStride(vpcOutputDesc, cropSizeHeight);
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
227
228
229
|
(void)acldvppSetPicDescSize(vpcOutputDesc, vpcOutBufferSize_);
}
|
29b64a88
Hu Chunming
添加行人逆行算法
|
230
231
232
|
aclrtStream stream_;
aclrtCreateStream(&stream_);
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
233
234
235
236
|
uint32_t roiNums[] = { outputBatchSize_ };
ret = acldvppVpcBatchCropAsync(dvppChannelDesc_, vpcInputBatchDesc_, roiNums, 1, outputBatchPicDesc_, cropAreas, stream_);
ret = aclrtSynchronizeStream(stream_);
|
29b64a88
Hu Chunming
添加行人逆行算法
|
237
238
239
240
|
if (stream_ != nullptr) {
aclrtDestroyStream(stream_);
}
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
|
for (uint32_t i = 0; i < outputBatchSize_; i++) {
video_object_info obj = objs[i];
vpcOutputDesc = acldvppGetPicDesc(outputBatchPicDesc_, i);
void *outputDataDev = acldvppGetPicDescData(vpcOutputDesc);
uint32_t outputSize = acldvppGetPicDescSize(vpcOutputDesc);
uint32_t width = acldvppGetPicDescWidth(vpcOutputDesc);
uint32_t width_stride = acldvppGetPicDescWidthStride(vpcOutputDesc);
uint32_t height = acldvppGetPicDescHeight(vpcOutputDesc);
uint32_t height_stride = acldvppGetPicDescHeightStride(vpcOutputDesc);
acldvppPixelFormat fmt = acldvppGetPicDescFormat(vpcOutputDesc);
acldvppPicDesc *vpcInputDesc_= acldvppCreatePicDesc();
acldvppSetPicDescData(vpcInputDesc_, vecOutPtr_[i]);
acldvppSetPicDescFormat(vpcInputDesc_, fmt);
acldvppSetPicDescWidth(vpcInputDesc_, width);
acldvppSetPicDescHeight(vpcInputDesc_, height);
acldvppSetPicDescWidthStride(vpcInputDesc_, width_stride);
acldvppSetPicDescHeightStride(vpcInputDesc_, height_stride);
acldvppSetPicDescSize(vpcInputDesc_, outputSize);
vpc_img_info img_info ;
img_info.pic_desc = vpcInputDesc_;
img_info.object_id = obj.object_id;
img_info.task_id = obj.task_id; //该物体属于的任务ID号
img_info.task_frame_count = obj.task_frame_count; //该物体当前出现的帧号
img_info.index = obj.index; //该物体所属类别的编号
img_info.confidence = obj.confidence; //该物体的置信度
vec_img_info.push_back(img_info);
// vpcOutputDesc = acldvppGetPicDesc(outputBatchPicDesc_, i);
// string file_name = "output";
// file_name = file_name + to_string(i) + ".jpg";
|
e109b001
Hu Chunming
修正多显卡问题
|
273
|
// vpc_jpeg_encode(vpcOutputDesc, file_name);
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
}
aclrtSetCurrentContext(context_);
if (vpcInputBatchDesc_ != nullptr) {
(void)acldvppDestroyBatchPicDesc(vpcInputBatchDesc_);
vpcInputBatchDesc_ = nullptr;
}
// for(int i = 0; i < vecOutPtr_.size(); i++){
// if (vecOutPtr_[i] != nullptr){
// acldvppFree(vecOutPtr_[i]);
// }
// }
if (outputBatchPicDesc_ != nullptr) {
(void)acldvppDestroyBatchPicDesc(outputBatchPicDesc_);
outputBatchPicDesc_ = nullptr;
}
// for (size_t i = 0; i < vec_img_info.size(); i++)
// {
// if(vec_img_info[i].pic_desc != nullptr){
// void *outputDataDev = acldvppGetPicDescData(vec_img_info[i].pic_desc);
// acldvppFree(outputDataDev);
// acldvppDestroyPicDesc(vec_img_info[i].pic_desc);
// }
// }
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
302
303
304
305
306
307
308
309
310
311
312
|
for (uint32_t i = 0; i < outputBatchSize_; i++) {
if (cropAreas[i] != nullptr) {
(void)acldvppDestroyRoiConfig(cropAreas[i]);
cropAreas[i] = nullptr;
}
}
return vec_img_info;
}
|
e109b001
Hu Chunming
修正多显卡问题
|
313
|
vpc_img_info VPCUtil::vpc_devMem2vpcImg(DeviceMemory *devMem){
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
314
315
316
317
318
319
320
|
vpc_img_info img_info ;
int nBufferSize = devMem->getSize();
void *devBuffer = nullptr;
auto ret = acldvppMalloc(&devBuffer, nBufferSize);
if (ret != ACL_SUCCESS) {
|
d7bafd67
Hu Chunming
添加最优快照截取模式
|
321
|
LOG_ERROR("acldvppMalloc failed, size = %u, errorCode = %d.", nBufferSize, static_cast<int32_t>(ret));
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
|
// 这里应释放之前成功的部分 再退出
return img_info;
}
aclrtMemcpy(devBuffer, nBufferSize, devMem->getMem(), nBufferSize, ACL_MEMCPY_DEVICE_TO_DEVICE);
acldvppPicDesc *vpcInputDesc_= acldvppCreatePicDesc();
acldvppSetPicDescData(vpcInputDesc_, devBuffer);
acldvppSetPicDescFormat(vpcInputDesc_, PIXEL_FORMAT_YUV_SEMIPLANAR_420);
acldvppSetPicDescWidth(vpcInputDesc_, devMem->getWidth());
acldvppSetPicDescHeight(vpcInputDesc_, devMem->getHeight());
acldvppSetPicDescWidthStride(vpcInputDesc_, devMem->getWidthStride());
acldvppSetPicDescHeightStride(vpcInputDesc_, devMem->getHeightStride());
acldvppSetPicDescSize(vpcInputDesc_, devMem->getSize());
img_info.pic_desc = vpcInputDesc_;
img_info.object_id = -1;
img_info.task_id = devMem->getId(); //该物体属于的任务ID号
img_info.index = -1; //该物体所属类别的编号
img_info.confidence = 0.0; //该物体的置信度
return img_info;
}
|
29b64a88
Hu Chunming
添加行人逆行算法
|
346
347
348
349
350
351
|
void VPCUtil::vpc_pic_desc_release(acldvppPicDesc* pic_desc){
void *outputDataDev = acldvppGetPicDescData(pic_desc);
acldvppFree(outputDataDev);
acldvppDestroyPicDesc(pic_desc);
}
|
e109b001
Hu Chunming
修正多显卡问题
|
352
|
void VPCUtil::vpc_img_release(vpc_img_info img_info){
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
353
354
355
356
357
358
359
|
if(img_info.pic_desc != nullptr){
void *outputDataDev = acldvppGetPicDescData(img_info.pic_desc);
acldvppFree(outputDataDev);
acldvppDestroyPicDesc(img_info.pic_desc);
}
}
|
e109b001
Hu Chunming
修正多显卡问题
|
360
|
void VPCUtil::vpc_imgList_release(vector<vpc_img_info>& imgList){
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
361
|
for(int i=0; i < imgList.size(); i++){
|
e109b001
Hu Chunming
修正多显卡问题
|
362
|
vpc_img_release(imgList[i]);
|
0b4cd5d5
Hu Chunming
完成轨迹定时抓拍
|
363
364
365
|
}
imgList.clear();
}
|