Home | History | Annotate | Download | only in src

Lines Matching refs:sz1

952             CvSize sz1 = { sz.width - win_size0.width, sz.height - win_size0.height };
959 if( sz1.width <= 0 || sz1.height <= 0 )
972 norm1 = cvMat( sz1.height, sz1.width, CV_32FC1, norm_img ? norm_img->data.ptr : 0 );
973 mask1 = cvMat( sz1.height, sz1.width, CV_8UC1, temp->data.ptr );
980 strip_count = MAX(MIN(sz1.height/ystep, max_threads*3), 1);
981 strip_size = (sz1.height + strip_count - 1)/strip_count;
987 strip_size = sz1.height;
1015 if( i == strip_count - 1 || y2 > sz1.height )
1016 y2 = sz1.height;
1017 ssz = cvSize(sz1.width, y2 - y1);