forked from VIAME/VIAME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hough_detector.pipe
55 lines (47 loc) · 1.58 KB
/
hough_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 hough_circle
:detector:hough_circle:dp 1
:detector:hough_circle:min_dist 100
:detector:hough_circle:param1 200
:detector:hough_circle:param2 100
:detector:hough_circle:min_radius 0
:detector:hough_circle:max_radius 0
# ================================================================
process draw
:: draw_detected_object_boxes
:default_line_thickness 3
# ================================================================
process disp
:: image_viewer
:annotate_image true
# pause_time in seconds. 0 means wait for keystroke.
:pause_time 0 # 1.0
:title NOAA images
# :footer NOAA images
# :header header-header
# ================================================================
# global pipeline config
#
config _pipeline:_edge
:capacity 2
# ================================================================
# 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
# -- end of file --