Home | History | Annotate | Download | only in src

Lines Matching defs:grid

101 // Param Grid
110 CV_ERROR( CV_StsBadArg, "Lower bound of the grid must be less then the upper one" );
112 CV_ERROR( CV_StsBadArg, "Lower bound of the grid must be positive" );
114 CV_ERROR( CV_StsBadArg, "Grid step must greater then 1" );
125 CvParamGrid grid;
128 grid.min_val = 0.1;
129 grid.max_val = 500;
130 grid.step = 5; // total iterations = 5
134 grid.min_val = 1e-5;
135 grid.max_val = 0.6;
136 grid.step = 15; // total iterations = 4
140 grid.min_val = 0.01;
141 grid.max_val = 100;
142 grid.step = 7; // total iterations = 4
146 grid.min_val = 0.01;
147 grid.max_val = 0.2;
148 grid.step = 3; // total iterations = 3
152 grid.min_val = 0.1;
153 grid.max_val = 300;
154 grid.step = 14; // total iterations = 3
158 grid.min_val = 0.01;
159 grid.max_val = 4;
160 grid.step = 7; // total iterations = 3
165 return grid;
2499 "low bound of grid should be less then the upper one");
2501 CV_ERROR( CV_StsBadArg, "grid step should be greater 1" );
2517 "low bound of grid should be less then the upper one");
2519 CV_ERROR( CV_StsBadArg, "grid step should be greater 1" );
2535 "low bound of grid should be less then the upper one");
2537 CV_ERROR( CV_StsBadArg, "grid step should be greater 1" );
2552 "low bound of grid should be less then the upper one");
2554 CV_ERROR( CV_StsBadArg, "grid step should be greater 1" );
2569 "low bound of grid should be less then the upper one");
2571 CV_ERROR( CV_StsBadArg, "grid step should be greater 1" );
2586 "low bound of grid should be less then the upper one");
2588 CV_ERROR( CV_StsBadArg, "grid step should be greater 1" );