repo.or.cz
/
sudos
/
9s12.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Boundary Searching
[sudos/9s12.git]
/
sources
/
app
/
image
/
image_cap.h
blob
ad89afdc544799d00a6e265b726bcc059675c12a
1
#ifndef IMAGE_CAP_H
2
#define IMAGE_CAP_H
3
4
//#include "includes.h"
5
//#include "image.h"
6
7
#define H_OFFSET 80
8
#define V_OFFSET 8000
9
10
11
struct
track
{
12
int
vector
;
13
int
x
;
14
int
y
;
15
};
16
17
int
image_cap
(
char
image
[
VER
][
HOR
]) ;
18
19
#endif