Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
fdf4d0e3
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
fdf4d0e3
编写于
8月 08, 2022
作者:
Z
zhiboniu
提交者:
GitHub
8月 08, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
check rtsp stream (#6595)
* check rtsp stream * add rtsp in doc s * visual change to false * update rtsp command
上级
09e7665d
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
24 addition
and
6 deletion
+24
-6
deploy/pipeline/docs/tutorials/PPHuman_QUICK_STARTED.md
deploy/pipeline/docs/tutorials/PPHuman_QUICK_STARTED.md
+7
-1
deploy/pipeline/docs/tutorials/PPVehicle_QUICK_STARTED.md
deploy/pipeline/docs/tutorials/PPVehicle_QUICK_STARTED.md
+7
-1
deploy/pipeline/pipeline.py
deploy/pipeline/pipeline.py
+8
-2
deploy/pipeline/ppvehicle/vehicle_plate.py
deploy/pipeline/ppvehicle/vehicle_plate.py
+1
-1
deploy/python/visualize.py
deploy/python/visualize.py
+1
-1
未找到文件。
deploy/pipeline/docs/tutorials/PPHuman_QUICK_STARTED.md
浏览文件 @
fdf4d0e3
...
...
@@ -129,6 +129,12 @@ python deploy/pipeline/pipeline.py --config deploy/pipeline/config/infer_cfg_pph
python deploy/pipeline/pipeline.py --config deploy/pipeline/config/infer_cfg_pphuman.yml --video_dir=mtmct_dir/ --device=gpu [--run_mode trt_fp16]
```
对rtsp流的支持,video_file后面的视频地址更换为rtsp流地址,示例如下:
```
# 行人属性识别,指定配置文件路径和测试视频,在配置文件```deploy/pipeline/config/infer_cfg_pphuman.yml```中的ATTR部分enable设置为```True```
python deploy/pipeline/pipeline.py --config deploy/pipeline/config/infer_cfg_pphuman.yml -o visual=False --video_file=rtsp://[YOUR_RTSP_SITE] --device=gpu [--run_mode trt_fp16]
```
### 参数说明
| 参数 | 是否必须|含义 |
...
...
@@ -137,7 +143,7 @@ python deploy/pipeline/pipeline.py --config deploy/pipeline/config/infer_cfg_pph
| --model_dir | Option | PP-Human中各任务模型路径,优先级高于配置文件, 例如
`--model_dir det=better_det/ attr=better_attr/`
|
| --image_file | Option | 需要预测的图片 |
| --image_dir | Option | 要预测的图片文件夹路径 |
| --video_file | Option | 需要预测的视频 |
| --video_file | Option | 需要预测的视频
,或者rtsp流地址
|
| --camera_id | Option | 用来预测的摄像头ID,默认为-1(表示不使用摄像头预测,可设置为:0 - (摄像头数目-1) ),预测过程中在可视化界面按
`q`
退出输出预测结果到:output/output.mp4|
| --device | Option | 运行时的设备,可选择
`CPU/GPU/XPU`
,默认为
`CPU`
|
| --output_dir | Option|可视化结果保存的根目录,默认为output/|
...
...
deploy/pipeline/docs/tutorials/PPVehicle_QUICK_STARTED.md
浏览文件 @
fdf4d0e3
...
...
@@ -84,6 +84,12 @@ python deploy/pipeline/pipeline.py --config deploy/pipeline/config/infer_cfg_ppv
```
对rtsp流的支持,video_file后面的视频地址更换为rtsp流地址,示例如下:
```
# 车辆属性识别,指定配置文件路径和测试视频,在配置文件```deploy/pipeline/config/infer_cfg_ppvehicle.yml```中的ATTR部分enable设置为```True```
python deploy/pipeline/pipeline.py --config deploy/pipeline/config/infer_cfg_ppvehicle.yml -o visual=False --video_file=rtsp://[YOUR_RTSP_SITE] --device=gpu [--run_mode trt_fp16]
```
### 参数说明
| 参数 | 是否必须|含义 |
...
...
@@ -92,7 +98,7 @@ python deploy/pipeline/pipeline.py --config deploy/pipeline/config/infer_cfg_ppv
| --model_dir | Option | 各任务模型路径,优先级高于配置文件, 例如
`--model_dir det=better_det/ attr=better_attr/`
|
| --image_file | Option | 需要预测的图片 |
| --image_dir | Option | 要预测的图片文件夹路径 |
| --video_file | Option | 需要预测的视频 |
| --video_file | Option | 需要预测的视频
,或者rtsp流地址
|
| --camera_id | Option | 用来预测的摄像头ID,默认为-1(表示不使用摄像头预测,可设置为:0 - (摄像头数目-1) ),预测过程中在可视化界面按
`q`
退出输出预测结果到:output/output.mp4|
| --device | Option | 运行时的设备,可选择
`CPU/GPU/XPU`
,默认为
`CPU`
|
| --output_dir | Option|可视化结果保存的根目录,默认为output/|
...
...
deploy/pipeline/pipeline.py
浏览文件 @
fdf4d0e3
...
...
@@ -130,7 +130,9 @@ class Pipeline(object):
self
.
multi_camera
=
False
elif
video_file
is
not
None
:
assert
os
.
path
.
exists
(
video_file
),
"video_file not exists."
assert
os
.
path
.
exists
(
video_file
)
or
'rtsp'
in
video_file
,
"video_file not exists and not an rtsp site."
self
.
multi_camera
=
False
input
=
video_file
self
.
is_video
=
True
...
...
@@ -659,6 +661,8 @@ class PipePredictor(object):
# mot -> pose -> action
capture
=
cv2
.
VideoCapture
(
video_file
)
video_out_name
=
'output.mp4'
if
self
.
file_name
is
None
else
self
.
file_name
if
"rtsp"
in
video_file
:
video_out_name
=
video_out_name
+
"_rtsp.mp4"
# Get Video info : resolution, fps, frame count
width
=
int
(
capture
.
get
(
cv2
.
CAP_PROP_FRAME_WIDTH
))
...
...
@@ -767,8 +771,10 @@ class PipePredictor(object):
if
self
.
with_vehicleplate
:
if
frame_id
>
self
.
warmup_frame
:
self
.
pipe_timer
.
module_time
[
'vehicleplate'
].
start
()
plate_input
,
_
,
_
=
crop_image_with_mot
(
frame_rgb
,
mot_res
,
expand
=
False
)
platelicense
=
self
.
vehicleplate_detector
.
get_platelicense
(
crop
_input
)
plate
_input
)
if
frame_id
>
self
.
warmup_frame
:
self
.
pipe_timer
.
module_time
[
'vehicleplate'
].
end
()
self
.
pipeline_res
.
update
(
platelicense
,
'vehicleplate'
)
...
...
deploy/pipeline/ppvehicle/vehicle_plate.py
浏览文件 @
fdf4d0e3
...
...
@@ -268,7 +268,7 @@ class PlateRecognizer(object):
platelicense
=
""
for
text_info
in
text_pcar
:
text
=
text_info
[
0
][
0
][
0
]
if
len
(
text
)
>
2
and
text
[
0
]
in
simcode
and
len
(
text
)
<
10
:
if
len
(
text
)
>
2
and
len
(
text
)
<
10
:
platelicense
=
text
plate_all
[
"plate"
].
append
(
platelicense
)
return
plate_all
...
...
deploy/python/visualize.py
浏览文件 @
fdf4d0e3
...
...
@@ -418,7 +418,7 @@ def visualize_vehicleplate(im, results, boxes=None):
im
=
np
.
ascontiguousarray
(
np
.
copy
(
im
))
im_h
,
im_w
=
im
.
shape
[:
2
]
text_scale
=
max
(
0.5
,
im
.
shape
[
0
]
/
30
00.
)
text_scale
=
max
(
1.0
,
im
.
shape
[
0
]
/
16
00.
)
text_thickness
=
1
line_inter
=
im
.
shape
[
0
]
/
40.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录