-
Notifications
You must be signed in to change notification settings - Fork 99
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
1 parent
393d637
commit 9711470
Showing
526 changed files
with
19,429 additions
and
2,721 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef MOTION_API_H | ||
#define MOTION_API_H | ||
|
||
#define GSENSOR_PRINTF_ENABLE 0//contrl debug printf | ||
|
||
int get_DetectionBuf(int fs); | ||
void init_MotionDet(void *ptr, short fs, float thread); | ||
char run_MotionDetection(void *ptr, int len, short *data); | ||
|
||
#if WIN32 | ||
#else | ||
extern inline float add_float(float x, float y); | ||
extern inline float sub_float(float x, float y); | ||
extern inline float mul_float(float x, float y); | ||
extern inline float div_float(float x, float y); | ||
extern inline float complex_abs_float(float x, float y); | ||
#endif | ||
|
||
|
||
#endif // !MOTION_API_H | ||
|
||
|
Oops, something went wrong.