Quote:
Originally Posted by tommy_chai
I don't know how to link multiple C files because i have just started my C programming 1 month ago.
|
What tools are you using to compile and link your code? I'm curious as to why you're working on such a compliacated problem if you're so inexperienced at C programming? It seems like you need to get through a lot more simple examples before tackling something as complicated as computer vision.
Quote:
Originally Posted by tommy_chai
Code:
typedef struct
{int x,y,info,dx,dy,I;} CORNER_LIST[15000];
|
This is pretty ugly and potentially not that useful. I think most people would approach it more along the lines of:
Code:
typedef struct
{
int x;
int y;
int info;
int dx;
int dy;
int I;
} CORNER;
.
.
.
CORNER corner_list[15,000];