Lines Matching refs:full_img
219 UMat full_img, img; in composePanorama() local
228 full_img = imgs_[img_idx]; in composePanorama()
232 … compose_scale = std::min(1.0, std::sqrt(compose_resol_ * 1e6 / full_img.size().area())); in composePanorama()
271 resize(full_img, img, Size(), compose_scale, compose_scale); in composePanorama()
275 img = full_img; in composePanorama()
276 full_img.release(); in composePanorama()
392 UMat full_img, img; in matchImages() local
404 full_img = imgs_[i]; in matchImages()
405 full_img_sizes_[i] = full_img.size(); in matchImages()
409 img = full_img; in matchImages()
417 … work_scale_ = std::min(1.0, std::sqrt(registr_resol_ * 1e6 / full_img.size().area())); in matchImages()
420 resize(full_img, img, Size(), work_scale_, work_scale_); in matchImages()
424 seam_scale_ = std::min(1.0, std::sqrt(seam_est_resol_ * 1e6 / full_img.size().area())); in matchImages()
445 resize(full_img, img, Size(), seam_scale_, seam_scale_); in matchImages()
451 full_img.release(); in matchImages()