13 lines
444 B
C
13 lines
444 B
C
#ifndef IMG_PROCESS
|
|
#define IMG_PROCESS
|
|
|
|
#include "zf_common_headfile.h"
|
|
|
|
typedef signed int sint32;
|
|
|
|
void img_processing(void);
|
|
void SearchLineAdaptive_Left(uint8 img_gray[], sint32 block_size, sint32 down_value, sint32 h, sint32 w, sint32 pts[][2], sint32* line_num);
|
|
void SearchLineAdaptive_Right(uint8 img_gray[], sint32 block_size, sint32 down_value, sint32 h, sint32 w, sint32 pts[][2], sint32* line_num);
|
|
|
|
#endif /* STATE_H_ */
|