Searched refs:box_filter (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/photo/src/ |
D | npr.hpp | 315 Mat box_filter = Mat::zeros(h,w+1,CV_32FC3); in compute_NCfilter() local 319 box_filter.at<float>(i,1*channel+0) = output.at<float>(i,0*channel+0); in compute_NCfilter() 320 box_filter.at<float>(i,1*channel+1) = output.at<float>(i,0*channel+1); in compute_NCfilter() 321 box_filter.at<float>(i,1*channel+2) = output.at<float>(i,0*channel+2); in compute_NCfilter() 325 …box_filter.at<float>(i,j*channel+c) = output.at<float>(i,(j-1)*channel+c) + box_filter.at<float>(i… in compute_NCfilter() 389 …final.at<float>(i,j*channel+2-c) = (box_filter.at<float>(p-1,q*channel+(2-r)) - box_filter.at<floa… in compute_NCfilter()
|
/external/opencv/cv/src/ |
D | cvsmooth.cpp | 1315 CvBoxFilter box_filter; in cvSmooth() local 1431 CV_CALL( box_filter.init( src->cols, src_type, dst_type, in cvSmooth() 1433 CV_CALL( box_filter.process( src, dst )); in cvSmooth()
|