forked from VIAME/VIAME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcamtrawl_pipeline.pipe
59 lines (49 loc) · 1.87 KB
/
camtrawl_pipeline.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
56
57
58
59
# =============================================================================
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/camtrawl/camtrawl_detector.m
# Specify initial config for the detector
:detector:matlab:config:min_aspect 3.5
:detector:matlab:config:max_aspect 7.5
:detector:matlab:config:min_size 2000
:detector:matlab:config:ROI [12,12,412*2-24,309*2-24]
:detector:matlab:config:factor 2
:detector:matlab:config:num_frames 30
:detector:matlab:config:init_var 900
# =============================================================================
#process classifier
# :: refine_detections
# :refiner:type uw_predictor_classifier
# :refiner:uw_predictor_classifier:model_file Model_SVM.xml
# =============================================================================
#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 classifier
#connect from input.image
# to classifier.image
#connect from detector.detected_object_set
# to classifier.detected_object_set
# Connect drawer
#connect from classifier.detected_object_set
# to draw.detected_object_set
#connect from input.image
# to draw.image
# -- end of file --