Compare commits

...

12 Commits

Author SHA1 Message Date
Me No Dev ff45c1575a
Update esp32-camera driver 2021-01-12 11:51:14 +02:00
me-no-dev e7a10a382a Update esp32-camera 2021-01-11 11:31:38 +02:00
Me No Dev 73d4e2dc05
Merge pull request #161 from espressif/camera-updates
Update camera driver and add BMP download to HTTPD
2020-10-16 12:45:53 +03:00
Me No Dev 6ab849a752
Merge pull request #139 from 7FM/patch-1
Fix UB by avoiding duplicate httpd_resp_send_x
2020-10-16 12:45:23 +03:00
me-no-dev ac84ca1584 Update esp32-camera 2020-10-16 12:39:20 +03:00
me-no-dev b468635ba1 Add support for downloading BMPs through the web server 2020-10-16 12:36:08 +03:00
me-no-dev 3aae910d0b Add support for the 18 pin header on the ESP32 Camera Dev Board 2020-10-16 12:35:25 +03:00
TiramisuJ 0948db63fc
Merge pull request #155 from gannaramu/patch-2
update index
2020-09-08 11:56:35 +08:00
Ram Rohit Gannavarapu 9e9c094735
update formating 2020-09-03 20:00:48 -06:00
TiramisuJ b5be428793
Merge pull request #154 from gannaramu/patch-1
Update readme with correct example folder
2020-09-02 20:01:17 +08:00
Ram Rohit Gannavarapu eb8c12026f
Update readme with correct example folder
There is no folder detection_with_commnad_line
2020-08-31 18:25:45 -06:00
7FM 3a404d6f63 Fix UB by avoiding duplicate httpd_resp_send_x 2020-04-02 14:04:41 +02:00
5 changed files with 80 additions and 19 deletions

View File

@ -93,9 +93,9 @@ The folder of [examples](examples) contains sample applications demonstrating th
Take one Face Detection as an example.
1. Get into one example folder `esp-who/examples/single_chip/detection_with_command_line`.
1. Get into one example folder `esp-who/examples/single_chip/face_detection_with_command_line`.
```
cd esp-who/examples/single_chip/detection_with_command_line
cd esp-who/examples/single_chip/face_detection_with_command_line
```
2. Compile and flash the project.

@ -1 +1 @@
Subproject commit af931850f4a32566f51403758c3a49032327225c
Subproject commit a5ccbecf08f98eb84c7443d8aebe4a529ba737a7

View File

@ -17,6 +17,6 @@ After you've completed the hardware settings, please follow the steps below:
4. **Open Your Browser** and point it to `http://[ip-of-esp32]/`;
5. **To Get Image** press `Get Still` or `Start Stream`;
6. **Use The Options** to enable/disable Face Detection, Face Recognition and more;
t. **View The Stream** in a player like VLC: Open Network `http://[ip-of-esp32]:81/stream`;
7. **View The Stream** in a player like VLC: Open Network `http://[ip-of-esp32]:81/stream`;
For more details of the http handler, please refer to [esp32-camera](https://github.com/espressif/esp32-camera).

View File

@ -289,6 +289,44 @@ void enable_led(bool en)
}
#endif
static esp_err_t bmp_handler(httpd_req_t *req)
{
camera_fb_t *fb = NULL;
esp_err_t res = ESP_OK;
uint64_t fr_start = esp_timer_get_time();
fb = esp_camera_fb_get();
if (!fb)
{
ESP_LOGE(TAG, "Camera capture failed");
httpd_resp_send_500(req);
return ESP_FAIL;
}
httpd_resp_set_type(req, "image/x-windows-bmp");
httpd_resp_set_hdr(req, "Content-Disposition", "inline; filename=capture.bmp");
httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*");
char ts[32];
snprintf(ts, 32, "%ld.%06ld", fb->timestamp.tv_sec, fb->timestamp.tv_usec);
httpd_resp_set_hdr(req, "X-Timestamp", (const char *)ts);
uint8_t * buf = NULL;
size_t buf_len = 0;
bool converted = frame2bmp(fb, &buf, &buf_len);
esp_camera_fb_return(fb);
if(!converted){
ESP_LOGE(TAG, "BMP Conversion failed");
httpd_resp_send_500(req);
return ESP_FAIL;
}
res = httpd_resp_send(req, (const char *)buf, buf_len);
free(buf);
uint64_t fr_end = esp_timer_get_time();
ESP_LOGI(TAG, "BMP: %llums, %uB", (uint64_t)((fr_end - fr_start) / 1000), buf_len);
return res;
}
static size_t jpg_encode_stream(void *arg, size_t index, const void *data, size_t len)
{
jpg_chunking_t *j = (jpg_chunking_t *)arg;
@ -664,8 +702,10 @@ static esp_err_t cmd_handler(httpd_req_t *req)
char variable[32];
char value[32];
if (parse_get(req, &buf) != ESP_OK ||
httpd_query_key_value(buf, "var", variable, sizeof(variable)) != ESP_OK ||
if (parse_get(req, &buf) != ESP_OK) {
return ESP_FAIL;
}
if (httpd_query_key_value(buf, "var", variable, sizeof(variable)) != ESP_OK ||
httpd_query_key_value(buf, "val", value, sizeof(value)) != ESP_OK) {
free(buf);
httpd_resp_send_404(req);
@ -761,10 +801,11 @@ static esp_err_t cmd_handler(httpd_req_t *req)
#endif
#endif
else {
ESP_LOGI(TAG, "Unknown command: %s", variable);
res = -1;
}
if (res) {
if (res < 0) {
return httpd_resp_send_500(req);
}
@ -807,7 +848,7 @@ static esp_err_t status_handler(httpd_req_t *req)
p+=print_reg(p, s, reg, 0xFF);
}
p+=print_reg(p, s, 0x558a, 0x1FF);//9 bit
} else {
} else if(s->id.PID == OV2640_PID){
p+=print_reg(p, s, 0xd3, 0xFF);
p+=print_reg(p, s, 0x111, 0xFF);
p+=print_reg(p, s, 0x132, 0xFF);
@ -873,8 +914,10 @@ static esp_err_t xclk_handler(httpd_req_t *req)
char *buf = NULL;
char _xclk[32];
if (parse_get(req, &buf) != ESP_OK ||
httpd_query_key_value(buf, "xclk", _xclk, sizeof(_xclk)) != ESP_OK) {
if (parse_get(req, &buf) != ESP_OK) {
return ESP_FAIL;
}
if (httpd_query_key_value(buf, "xclk", _xclk, sizeof(_xclk)) != ESP_OK) {
free(buf);
httpd_resp_send_404(req);
return ESP_FAIL;
@ -901,8 +944,10 @@ static esp_err_t reg_handler(httpd_req_t *req)
char _mask[32];
char _val[32];
if (parse_get(req, &buf) != ESP_OK ||
httpd_query_key_value(buf, "reg", _reg, sizeof(_reg)) != ESP_OK ||
if (parse_get(req, &buf) != ESP_OK) {
return ESP_FAIL;
}
if (httpd_query_key_value(buf, "reg", _reg, sizeof(_reg)) != ESP_OK ||
httpd_query_key_value(buf, "mask", _mask, sizeof(_mask)) != ESP_OK ||
httpd_query_key_value(buf, "val", _val, sizeof(_val)) != ESP_OK) {
free(buf);
@ -932,8 +977,10 @@ static esp_err_t greg_handler(httpd_req_t *req)
char _reg[32];
char _mask[32];
if (parse_get(req, &buf) != ESP_OK ||
httpd_query_key_value(buf, "reg", _reg, sizeof(_reg)) != ESP_OK ||
if (parse_get(req, &buf) != ESP_OK) {
return ESP_FAIL;
}
if (httpd_query_key_value(buf, "reg", _reg, sizeof(_reg)) != ESP_OK ||
httpd_query_key_value(buf, "mask", _mask, sizeof(_mask)) != ESP_OK) {
free(buf);
httpd_resp_send_404(req);
@ -970,8 +1017,6 @@ static esp_err_t pll_handler(httpd_req_t *req)
char *buf = NULL;
if (parse_get(req, &buf) != ESP_OK) {
free(buf);
httpd_resp_send_404(req);
return ESP_FAIL;
}
@ -1001,8 +1046,6 @@ static esp_err_t win_handler(httpd_req_t *req)
char *buf = NULL;
if (parse_get(req, &buf) != ESP_OK) {
free(buf);
httpd_resp_send_404(req);
return ESP_FAIL;
}
@ -1075,7 +1118,7 @@ static esp_err_t monitor_handler(httpd_req_t *req)
void app_httpd_main()
{
httpd_config_t config = HTTPD_DEFAULT_CONFIG();
config.max_uri_handlers = 12;
config.max_uri_handlers = 16;
httpd_uri_t index_uri = {
.uri = "/",
@ -1107,6 +1150,12 @@ void app_httpd_main()
.handler = stream_handler,
.user_ctx = NULL};
httpd_uri_t bmp_uri = {
.uri = "/bmp",
.method = HTTP_GET,
.handler = bmp_handler,
.user_ctx = NULL};
httpd_uri_t xclk_uri = {
.uri = "/xclk",
.method = HTTP_GET,
@ -1179,6 +1228,7 @@ void app_httpd_main()
httpd_register_uri_handler(camera_httpd, &cmd_uri);
httpd_register_uri_handler(camera_httpd, &status_uri);
httpd_register_uri_handler(camera_httpd, &capture_uri);
httpd_register_uri_handler(camera_httpd, &bmp_uri);
httpd_register_uri_handler(camera_httpd, &xclk_uri);
httpd_register_uri_handler(camera_httpd, &reg_uri);

View File

@ -45,6 +45,9 @@
#define PCLK_GPIO_NUM 22
#elif CONFIG_CAMERA_MODEL_ESP32_CAM_BOARD
// The 18 pin header on the board has Y5 and Y3 swapped
#define USE_BOARD_HEADER 0
#define CAM_BOARD "ESP-DEVCAM"
#define PWDN_GPIO_NUM 32
#define RESET_GPIO_NUM 33
@ -56,9 +59,17 @@
#define Y8_GPIO_NUM 19
#define Y7_GPIO_NUM 21
#define Y6_GPIO_NUM 39
#if USE_BOARD_HEADER
#define Y5_GPIO_NUM 13
#else
#define Y5_GPIO_NUM 35
#endif
#define Y4_GPIO_NUM 14
#if USE_BOARD_HEADER
#define Y3_GPIO_NUM 35
#else
#define Y3_GPIO_NUM 13
#endif
#define Y2_GPIO_NUM 34
#define VSYNC_GPIO_NUM 5
#define HREF_GPIO_NUM 27