Home | History | Annotate | Download | only in src

Lines Matching full:lvl

226             for(int lvl = 0; lvl < maxlevel; lvl++) {
228 pyrUp(img_pyr[lvl + 1], up, img_pyr[lvl].size());
229 img_pyr[lvl] -= up;
231 for(int lvl = 0; lvl <= maxlevel; lvl++) {
233 split(img_pyr[lvl], splitted);
235 splitted[c] = splitted[c].mul(weight_pyr[lvl]);
237 merge(splitted, img_pyr[lvl]);
238 if(res_pyr[lvl].empty()) {
239 res_pyr[lvl] = img_pyr[lvl];
241 res_pyr[lvl] += img_pyr[lvl];
245 for(int lvl = maxlevel; lvl > 0; lvl--) {
247 pyrUp(res_pyr[lvl], up, res_pyr[lvl - 1].size());
248 res_pyr[lvl - 1] += up;