,滤波器上编号为1的位置明显已经越界(无像素值),此时我们用编号为2的位置的像素值代替1处的像素值。 3.双边滤波代码 double Wd(const int &i, const int &j, const float &sigma_d) { return double(exp(-(pow(i, 2) + pow(j, 2)) / (2 * pow(sigma_d, 2))); } double Wr(const float ...