Home | History | Annotate | Download | only in src

Lines Matching defs:orig_window_size

174     CvSize orig_window_size;
190 orig_window_size = cascade->orig_window_size;
224 r.x + r.width > orig_window_size.width
227 (r.x < 0 || r.y + r.height > orig_window_size.height))
230 r.y + r.width + r.height > orig_window_size.height)))
330 float ipp_weight_scale=(float)(1./((orig_window_size.width-icv_object_win_border*2)*
331 (orig_window_size.height-icv_object_win_border*2)));
359 //ipp_features[k].y = orig_window_size.height - ipp_features[k].y - ipp_features[k].height;
689 _cascade->real_window_size.width = cvRound( _cascade->orig_window_size.width * scale );
690 _cascade->real_window_size.height = cvRound( _cascade->orig_window_size.height * scale );
696 equ_rect.width = cvRound((_cascade->orig_window_size.width-2)*scale);
697 equ_rect.height = cvRound((_cascade->orig_window_size.height-2)*scale);
818 const float orig_norm_size = (float)(_cascade->orig_window_size.width)*(_cascade->orig_window_size.height);
965 // CvSize win_size0 = cascade->orig_window_size;
1143 factor*cascade->orig_window_size.width < img->cols - 10 &&
1144 factor*cascade->orig_window_size.height < img->rows - 10;
1160 CvSize win_size = { cvRound( cascade->orig_window_size.width * factor ),
1161 cvRound( cascade->orig_window_size.height * factor )};