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

📄 image.c

📁 有关嵌入式的摄像头视频采集的论文
💻 C
字号:
#include <stdio.h>#include "image.h"struct image *image_new(int width, int height){	struct image *img = (struct image*)malloc(sizeof(struct image));	if(img)	{		img->width = width;		img->height = height;		img->bufsize = width*height*3;		img->buf = (char *)malloc(img->bufsize);		if(!img->bufsize)		{			free(img);			img = NULL;		}	}		return img;}void image_delete(struct image *img){	free(img->buf);}

⌨️ 快捷键说明

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