Home
last modified time | relevance | path

Searched refs:gain_maps_ (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/stitching/src/
Dexposure_compensate.cpp202 gain_maps_.resize(num_images); in feed()
211 gain_maps_[img_idx].create(bl_per_img, CV_32F); in feed()
214 Mat_<float> gain_map = gain_maps_[img_idx].getMat(ACCESS_WRITE); in feed()
220 sepFilter2D(gain_maps_[img_idx], gain_maps_[img_idx], CV_32F, ker, ker); in feed()
221 sepFilter2D(gain_maps_[img_idx], gain_maps_[img_idx], CV_32F, ker, ker); in feed()
231 if (gain_maps_[index].size() == _image.size()) in apply()
232 u_gain_map = gain_maps_[index]; in apply()
234 resize(gain_maps_[index], u_gain_map, _image.size(), 0, 0, INTER_LINEAR); in apply()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dexposure_compensate.hpp124 std::vector<UMat> gain_maps_; member in cv::detail::BlocksGainCompensator