安装pytorch
根据你的操作系统、安装工具以及CUDA版本,在 https://pytorch.org/get-started/locally/ 找到对应的安装命令。我的环境是 ubuntu 18.04.5、pip、CUDA 11.0。
安装软件包
$ pip install -r requirements.txt
class="hljs-button signin" data-title="登录后复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
在 demo.py 文件中,设置要检测的视频文件路径,默认为 './video/test.mp4'
capture = cv2.VideoCapture(‘./video/test.mp4’)
运行程序
python count.py
class="hljs-button signin" data-title="登录后复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
demo代码
detector = Detector()
capture = cv2.VideoCapture(VIDEO_PATH)
while True:
_, im = capture.read()
if im is None:
break
im = cv2.resize(im, (width//2, height//2))
list_bboxs = []
output_image_frame, list_bboxs = objtracker.update(detector, im)
output_image_frame = cv2.add(output_image_frame, color_polygons_image)
if len(list_bboxs) > 0:
for item_bbox in list_bboxs:
x1, y1, x2, y2, _, track_id = item_bbox
y1_offset = int(y1 + ((y2 - y1) * 0.6))
y = y1_offset
x = x1
if polygon_mask_blue_and_yellow[y, x] == 1:
if track_id not in list_overlapping_blue_polygon:
list_overlapping_blue_polygon.append(track_id)
if track_id in list_overlapping_yellow_polygon:
up_count += 1
print('up count:', up_count, ', up id:', list_overlapping_yellow_polygon)
list_overlapping_yellow_polygon.remove(track_id)
elif polygon_mask_blue_and_yellow[y, x] == 2:
if track_id not in list_overlapping_yellow_polygon:
list_overlapping_yellow_polygon.append(track_id)
if track_id in list_overlapping_blue_polygon:
down_count += 1
print('down count:', down_count, ', down id:', list_overlapping_blue_polygon)
list_overlapping_blue_polygon.remove(track_id)
list_overlapping_all = list_overlapping_yellow_polygon + list_overlapping_blue_polygon
for id1 in list_overlapping_all:
is_found = False
for _, _, _, _, _, bbox_id in list_bboxs:
if bbox_id == id1:
is_found = True
if not is_found:
if id1 in list_overlapping_yellow_polygon:
list_overlapping_yellow_polygon.remove(id1)
if id1 in list_overlapping_blue_polygon:
list_overlapping_blue_polygon.remove(id1)
list_overlapping_all.clear()
list_bboxs.clear()
else:
list_overlapping_blue_polygon.clear()
list_overlapping_yellow_polygon.clear()
text_draw = 'DOWN: ' + str(down_count) + \
' , UP: ' + str(up_count)
output_image_frame = cv2.putText(img=output_image_frame, text=text_draw,
org=draw_text_postion,
fontFace=font_draw_number,
fontScale=0.75, color=(0, 0, 255), thickness=2)
cv2.imshow('Counting Demo', output_image_frame)
cv2.waitKey(1)
capture.release()
cv2.destroyAllWindows()
class="hljs-button signin" data-title="登录后复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
class="hide-preCode-box">
- 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
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
结果展示

各种追踪 测距 姿态估计 目标检测 计数 测速功能已实现,欢迎交流!
更多项目详见主页!
data-report-view="{"mod":"1585297308_001","spm":"1001.2101.3001.6548","dest":"https://blog.csdn.net/ALiLiLiYa/article/details/131819630","extend1":"pc","ab":"new"}">>
id="blogExtensionBox" style="width:400px;margin:auto;margin-top:12px" class="blog-extension-box"> class="blog_extension blog_extension_type4" id="blog_extension">
class="extension_official" data-report-click="{"spm":"1001.2101.3001.6471"}" data-report-view="{"spm":"1001.2101.3001.6471"}">
class="blog_extension_card_left">
class="blog_extension_card_cont">
代码获取/论文辅导/作业帮助
class="blog_extension_card_cont_r">
QQ名片
评论记录:
回复评论: