5 General convolution for 2d decoupled filters
6 end effects are acounted for by increasing
7 scaling the result with the sum of used coefficients
9 coeff: (double array) coefficients for filter
10 len: length of filter.. number of coefficients
11 note that this has to be an odd number
12 (since the filter is even);
16 i_conv(i_img *im, const double *coeff,int len) {
17 i_img_dim xo, yo; /* output pixel co-ordinate */
20 double res[MAXCHANNELS];
23 mm_log((1,"i_conv(im %p, coeff %p, len %d)\n",im,coeff,len));
29 for (c = 0; c < len; ++c)
33 i_push_error(0, "sum of coefficients is zero");
37 timg = i_sametype(im, im->xsize, im->ysize);
41 /* don't move the calculation of pc up here, it depends on which pixels
43 for(yo = 0; yo < im->ysize; yo++) {
44 for(xo = 0; xo < im->xsize; xo++) {
45 for(ch = 0;ch < im->channels; ch++)
47 for(c = 0;c < len; c++) {
48 i_img_dim xi = xo + c - center;
51 else if (xi >= im->xsize)
54 if (IM_GPIX(im, xi, yo, &rcolor)!=-1) {
55 for(ch = 0; ch < im->channels; ch++)
56 res[ch] += (rcolor.channel[ch]) *coeff[c];
60 for(ch = 0; ch < im->channels; ch++) {
61 double temp = res[ch] / pc;
63 temp < 0 ? 0 : temp > IM_SAMPLE_MAX ? IM_SAMPLE_MAX : (IM_SAMPLE_T)temp;
65 IM_PPIX(timg, xo, yo, &rcolor);
69 for(xo = 0; xo < im->xsize; xo++) {
70 for(yo = 0;yo < im->ysize; yo++) {
71 for(ch = 0; ch < im->channels; ch++)
73 for(c = 0; c < len; c++) {
74 i_img_dim yi = yo + c - center;
77 else if (yi >= im->ysize)
79 if (IM_GPIX(timg, xo, yi, &rcolor) != -1) {
80 for(ch = 0;ch < im->channels; ch++)
81 res[ch] += (rcolor.channel[ch]) * coeff[c];
85 for(ch = 0;ch < im->channels; ch++) {
86 double temp = res[ch] / pc;
88 temp < 0 ? 0 : temp > IM_SAMPLE_MAX ? IM_SAMPLE_MAX : (IM_SAMPLE_T)temp;
90 IM_PPIX(im, xo, yo,&rcolor);