基本信息
源码名称:基于esp32的摄像头采集图像代码
源码大小:0.15M
文件格式:.zip
开发语言:C/C++
更新时间:2020-09-24
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

ESP32 camera sdcard


Camera with Web Server
Preparation
To run this example, you need the following components:

An ESP32 Module: Either ESP32-WROVER-KIT or ESP-EYE, which we highly recommend for beginners, is used in this example.
A Camera Module: Either OV2640 or OV3660 or OV5640 image sensor, which we highly recommend for beginners, is used in this example.
Quick Start
After you've completed the hardware settings, please follow the steps below:

Connect the camera to ESP32 module. For connection pins, please see here
Configure the example through idf.py menuconfig;
Build And Flash the application to ESP32;
Open Your Browser and point it to http://[ip-of-esp32]/;
To Get Image press Get Still or Start Stream;
Use The Options to enable/disable Face Detection, Face Recognition and more;
View The Stream in a player like VLC: Open Network http://[ip-of-esp32]:81/stream;


camera_web_server

├── CMakeLists.txt
├── Makefile
├── README.md
├── main
│   ├── CMakeLists.txt
│   ├── Kconfig.projbuild
│   ├── app_camera.c
│   ├── app_httpd.c
│   ├── app_main.c
│   ├── app_mdns.c
│   ├── app_wifi.c
│   ├── component.mk
│   ├── include
│   │   ├── app_camera.h
│   │   ├── app_httpd.h
│   │   ├── app_mdns.h
│   │   └── app_wifi.h
│   └── www
│       ├── compress_pages.sh
│       ├── index_ov2640.html
│       ├── index_ov2640.html.gz
│       ├── index_ov3660.html
│       ├── index_ov3660.html.gz
│       ├── index_ov5640.html
│       ├── index_ov5640.html.gz
│       ├── monitor.html
│       └── monitor.html.gz
├── partitions.csv
└── sdkconfig.defaults

3 directories, 26 files