Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (280 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(const char* filename);
14
int vision_get_robot_positions(VisionPosition** positions);
15
void vision_destroy();
16

    
17
#endif