//WARNING: YOU CAN ADD COMMENTS AND CHANGE VALUES.
//DO NOT DELETE LINES OR CHANGE LINE ORDER.
//EMPTY LINES WITHOUT A COMMENT ARE NOT ALLOWED.
//======================================================
//left_handed is 1 for left handed people, 0 for right handed people;
left_handed	:0;
//horiz_tange is the lenght in cm of the entire fireld of view of the camera
horiz_range	:400.0;
//standing range is the distance (in cm ) between hands above which it is assumed that the teacher is indicating
standing_range	:60.0;
//min_area is in squared cm. Any red and green region below this area is ignored
min_area	:10.0;
//
//MARKER COLORS. R_MIN_H must be > R_MAX_H; G_MIN_H must be < G_MAX_H;
//RED MARKER (LEFT HAND)
r_min_h		:169;
R_MAX_H 	:9;
R_MIN_V 	:70;
R_MAX_V 	:255;
//R_MIN_S 	:160;
R_MIN_S 	:200;
R_MAX_S 	:255;
//GREEN MARKER (RIGHT HAND)
G_MIN_H 	:55;
G_MAX_H 	:85;
G_MIN_V 	:10;
G_MAX_V 	:255;
G_MIN_S 	:100;
G_MAX_S 	:255;
//======================================================
//scene_size: there are only 6 scenes 
//0:zoom out, 1 teacher front talking; 2,3 indicating left and right, 4,5 writing right and left handed
//
scene_size[0]	:0;
scene_size[1]	:2;
scene_size[2]	:2;
scene_size[3]	:2;
scene_size[4]	:3;
scene_size[5]	:3;
//
pan_frac_per_sec	:0.2;
l_g_marker_conf_factor	:0.3;
l_g_marker_avg_factor 	:0.3;
r_r_marker_conf_factor	:0.3;
r_r_marker_avg_factor	:0.3;
scene_conf_factor	:0.5;
scene_change_hist	:0.1;
scene_move_guard	:0.1;
pt_factor		:2.0;
pt_follow		:2.0;
min_dt_for_control_ms	:300;
//END