forked from VIAME/VIAME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lanl_detector.pipe
38 lines (31 loc) · 1.06 KB
/
lanl_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
# =============================================================================
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 matlab
:detector:matlab:program_file ../../matlab/lanl_scallop_finder/ScallopFinder.m
# =============================================================================
process draw
:: draw_detected_object_boxes
:default_line_thickness 3
# =============================================================================
# global pipeline config
#
config _pipeline:_edge
:capacity 1
# =============================================================================
# connections
# Connect detector
connect from input.image
to detector.image
# Connect drawer
connect from detector.detected_object_set
to draw.detected_object_set
connect from input.image
to draw.image
# -- end of file --