Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / colonet / vision / vision.h @ 467

History | View | Annotate | Download (251 Bytes)

1
/**
2
 * Rich Hong's colony vision library.
3
 */
4

    
5
#ifndef COLONY_VISION_H
6
#define COLONY_VISION_H
7

    
8
typedef struct {
9
  int x;
10
  int y;
11
} VisionPosition;
12

    
13
int vision_init(char* filename);
14
int vision_get_robot_positions(VisionPosition** positions);
15

    
16
#endif