summaryrefslogtreecommitdiffstats
path: root/SD-VBS/benchmarks/stitch/src/c/stitch.h
diff options
context:
space:
mode:
Diffstat (limited to 'SD-VBS/benchmarks/stitch/src/c/stitch.h')
-rw-r--r--SD-VBS/benchmarks/stitch/src/c/stitch.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/SD-VBS/benchmarks/stitch/src/c/stitch.h b/SD-VBS/benchmarks/stitch/src/c/stitch.h
new file mode 100644
index 0000000..e2202fc
--- /dev/null
+++ b/SD-VBS/benchmarks/stitch/src/c/stitch.h
@@ -0,0 +1,22 @@
1/********************************
2Author: Sravanthi Kota Venkata
3********************************/
4
5#ifndef _SCRIPT_STITCH_
6#define _SCRIPT_STITCH_
7
8#include "sdvbs_common.h"
9
10F2D* dist2(I2D* x, F2D* c);
11F2D* extractFeatures(I2D* I, F2D* x, F2D* y);
12F2D* getANMS (F2D *points, int r);
13F2D* harris(I2D* im);
14I2D* matchFeatures(F2D* vecF1, F2D* vecF2);
15F2D* maxWindow(F2D* im, I2D* window);
16F2D* supress(F2D* im, F2D* im1);
17int script_stitch();
18
19#endif
20
21
22