~tomio2009/imagep/trunk

« back to all changes in this revision

Viewing changes to src/SimpleFilter1D.c

  • Committer: tomio2009 at gmail
  • Date: 2019-06-11 12:33:15 UTC
  • Revision ID: tomio2009@gmail.com-20190611123315-z57tojvw4b3a0348
Minor change. The 'noclip' option in the BPass filter is deprecated, the 1D filter takes care of the problem automatically. I removed this switch from BPass.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
                    resp += *(kernel +ii) * \
84
84
                            (*(img + nj*Nj+j));
85
85
            }/*end of for ii*/
86
 
            
 
86
 
87
87
            *(res+ i*Nj+j) = resp;
88
88
        }/*end of for i*/
89
89
    }/*end for j*/