forked from VIAME/VIAME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scallop_tk_detector.pipe
55 lines (45 loc) · 1.59 KB
/
scallop_tk_detector.pipe
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
# =============================================================================
process input
:: frame_list_input
:image_list_file input_list.txt
:frame_time .3333
:image_reader:type ocv
# =============================================================================
process detector
:: image_object_detector
:detector:type scallop_tk
:detector:scallop_tk:config_file models/scallop_tk/SYSTEM_SETTINGS
# =============================================================================
process draw
:: draw_detected_object_boxes
:default_line_thickness 3
# =============================================================================
#process writer
# :: detected_object_set_output
# :detector:type csv
# =============================================================================
process disp
:: image_viewer
:annotate_image true
:pause_time 0 # 1.0
:title NOAA images
# =============================================================================
# global pipeline config
#
config _pipeline:_edge
:capacity 5
# =============================================================================
# connections
connect from input.image
to detector.image
connect from detector.detected_object_set
to draw.detected_object_set
connect from input.image
to draw.image
connect from input.timestamp
to disp.timestamp
connect from draw.image
to disp.image
#connect from detector.detected_object_set
# to writer.detected_object_set
# -- end of file --