⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 alg.h

📁 video motion detection of linux base
💻 H
字号:
/*	alg.h * *	Detect changes in a video stream. *	Copyright 2001 by Jeroen Vreeken (pe1rxq@amsat.org) *	This software is distributed under the GNU public license version 2 *	See also the file 'COPYING'. * */#ifndef _INCLUDE_ALG_H#define _INCLUDE_ALG_H#include "motion.h"struct coord {	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;};void alg_locate_center_size(struct images *, int width, int height, struct coord *);void alg_draw_location(struct coord *, struct images *, int width, unsigned char *, int);int alg_diff(struct context *, unsigned char *);int alg_diff_standard(struct context *, unsigned char *);int alg_lightswitch(struct context *, int diffs);int alg_switchfilter(struct context *, int, unsigned char *);void alg_noise_tune(struct context *, unsigned char *);void alg_threshold_tune(struct context *, int, int);int alg_despeckle(struct context *, int);void alg_tune_smartmask(struct context *);#endif /* _INCLUDE_ALG_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -