summaryrefslogtreecommitdiffstats
path: root/tksao/util/convolve.C
diff options
context:
space:
mode:
Diffstat (limited to 'tksao/util/convolve.C')
-rw-r--r--tksao/util/convolve.C24
1 files changed, 24 insertions, 0 deletions
diff --git a/tksao/util/convolve.C b/tksao/util/convolve.C
index bdc6739..51b5f15 100644
--- a/tksao/util/convolve.C
+++ b/tksao/util/convolve.C
@@ -116,3 +116,27 @@ void dumpKernel(double* kernel, int k)
<< kernel[(yy+k)*kk+(xx+k)] << endl;
}
+void* convolve(double* kernel, double* src, double* dest,
+ int width, int height, int k)
+{
+ int kk = 2*k+1;
+
+ double* dptr = dest;
+ for (int jj=0; jj<height; jj++) {
+ for (int ii=0; ii<width; ii++, dptr++) {
+
+ for (int nn=jj-k, qq=0; nn<=jj+k; nn++, qq++) {
+ if (nn>=0 && nn<height) {
+ register int nd = nn*width;
+ register int qd = qq*kk;
+ for (int mm=ii-k, pp=0; mm<=ii+k; mm++, pp++) {
+ if (mm>=0 && mm<width)
+ *dptr += src[nd+mm]*kernel[qd+pp];
+ }
+ }
+ }
+ }
+ }
+
+ return NULL;
+}