-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
AngelCarpintero
authored and
AngelCarpintero
committed
Jul 16, 2008
1 parent
623085d
commit c2044fb
Showing
23 changed files
with
18,444 additions
and
18,184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/* alg.h | ||
/* alg.h | ||
* | ||
* Detect changes in a video stream. | ||
* Copyright 2001 by Jeroen Vreeken ([email protected]) | ||
* This software is distributed under the GNU public license version 2 | ||
* See also the file 'COPYING'. | ||
* Detect changes in a video stream. | ||
* Copyright 2001 by Jeroen Vreeken ([email protected]) | ||
* This software is distributed under the GNU public license version 2 | ||
* See also the file 'COPYING'. | ||
* | ||
*/ | ||
|
||
|
@@ -13,22 +13,22 @@ | |
#include "motion.h" | ||
|
||
struct coord { | ||
int x; | ||
int y; | ||
int width; | ||
int height; | ||
int minx; | ||
int maxx; | ||
int miny; | ||
int maxy; | ||
int x; | ||
int y; | ||
int width; | ||
int height; | ||
int minx; | ||
int maxx; | ||
int miny; | ||
int maxy; | ||
}; | ||
|
||
struct segment { | ||
struct coord coord; | ||
int width; | ||
int height; | ||
int open; | ||
int count; | ||
struct coord coord; | ||
int width; | ||
int height; | ||
int open; | ||
int count; | ||
}; | ||
|
||
void alg_locate_center_size(struct images *, int width, int height, struct coord *); | ||
|
Oops, something went wrong.