cv::Mat cv::getGaussianKernel( int n, double sigma, int ktype ) { // 预置的高斯系数数组,只有在 // (1)0<n<=7,n为奇数, // (2)sigma为无效参数,即sigma<=0 // 同时满足时才会使用预置的高斯系数数组 const int SMALL_GAUSSIAN_SIZE = 7; // 预置的最大模板的尺寸 static const float sm...