blob: e2202fcfc80e12facb26e7ccea7477d5d917526a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/********************************
Author: Sravanthi Kota Venkata
********************************/
#ifndef _SCRIPT_STITCH_
#define _SCRIPT_STITCH_
#include "sdvbs_common.h"
F2D* dist2(I2D* x, F2D* c);
F2D* extractFeatures(I2D* I, F2D* x, F2D* y);
F2D* getANMS (F2D *points, int r);
F2D* harris(I2D* im);
I2D* matchFeatures(F2D* vecF1, F2D* vecF2);
F2D* maxWindow(F2D* im, I2D* window);
F2D* supress(F2D* im, F2D* im1);
int script_stitch();
#endif
|