資源簡(jiǎn)介
ESP32驅(qū)動(dòng)攝像頭示例
代碼片段和文件信息
//https://stackoverflow.com/a/23303847
#include?“bitmap.h“
#include?
#include?
bitmap_header_t?*bmp_create_header(int?w?int?h)
{
bitmap_header_t?*pbitmap??=?(bitmap_header_t*)calloc(1?sizeof(bitmap_header_t));
int?_pixelbytesize?=?w?*?h?*?_bitsperpixel/8;
int?_filesize?=?_pixelbytesize+sizeof(bitmap_header_t);
strcpy((char*)pbitmap->fileheader.signature?“BM“);
pbitmap->fileheader.filesize?=?_filesize;
pbitmap->fileheader.fileoffset_to_pixelarray?=?sizeof(bitmap_header_t);
pbitmap->bitmapinfoheader.dibheadersize?=?sizeof(bitmapinfoheader);
pbitmap->bitmapinfoheader.width?=?w;
pbitmap->bitmapinfoheader.height?=?h;
pbitmap->bitmapinfoheader.planes?=?_planes;
pbitmap->bitmapinfoheader.bitsperpixel?=?_bitsperpixel;
pbitmap->bitmapinfoheader.compression?=?_compression;
pbitmap->bitmapinfoheader.imagesize?=?_pixelbytesize;
pbitmap->bitmapinfoheader.ypixelpermeter?=?_ypixelpermeter?;
pbitmap->bitmapinfoheader.xpixelpermeter?=?_xpixelpermeter?;
pbitmap->bitmapinfoheader.numcolorspallette?=?0;
return?pbitmap;
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-12-03?16:19??ESP32_CAMERA_QR-master\
?????文件????????6148??2019-12-03?16:19??ESP32_CAMERA_QR-master\.DS_Store
?????文件????????4532??2019-12-03?16:19??ESP32_CAMERA_QR-master\.cproject
?????文件?????????430??2019-12-03?16:19??ESP32_CAMERA_QR-master\.gitignore
?????文件?????????845??2019-12-03?16:19??ESP32_CAMERA_QR-master\.project
?????文件???????36113??2019-12-03?16:19??ESP32_CAMERA_QR-master\ESP_cam_qr?pin.pdf
?????文件???????11358??2019-12-03?16:19??ESP32_CAMERA_QR-master\LICENSE
?????文件??????????69??2019-12-03?16:19??ESP32_CAMERA_QR-master\Makefile
?????文件???????13356??2019-12-03?16:19??ESP32_CAMERA_QR-master\README.md
?????目錄???????????0??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\
?????目錄???????????0??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\
?????文件?????????717??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\Kconfig.projbuild
?????文件????????1059??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\bitmap.c
?????文件???????23787??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\camera.c
?????文件????????1831??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\camera_common.h
?????文件??????????39??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\component.mk
?????目錄???????????0??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\include\
?????文件?????????934??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\include\bitmap.h
?????文件????????5329??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\include\camera.h
?????文件???????20277??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\ov2640.c
?????文件?????????408??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\ov2640.h
?????文件????????6945??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\ov2640_regs.h
?????文件????????7985??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\ov7725.c
?????文件?????????349??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\ov7725.h
?????文件???????22184??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\ov7725_regs.h
?????文件????????1782??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\sccb.c
?????文件?????????510??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\sccb.h
?????文件????????5316??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\sensor.h
?????文件????????6769??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\twi.c
?????文件????????1330??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\twi.h
?????文件?????????767??2019-12-03?16:19??ESP32_CAMERA_QR-master\components\camera\wiring.c
............此處省略38個(gè)文件信息
評(píng)論
共有 條評(píng)論