Fix error in compilation when face detection is off (#8)

`mtmn_config` is defined only when face detection is on.
pull/9/head
Me No Dev 2018-12-05 07:13:25 +01:00 committed by XiaochaoGONG
parent bc6496663c
commit 96a2df24c3
1 changed files with 2 additions and 2 deletions

View File

@ -686,7 +686,7 @@ void app_httpd_main(){
ra_filter_init(&ra_filter, 20); ra_filter_init(&ra_filter, 20);
#if CONFIG_ESP_FACE_DETECT_ENABLED
mtmn_config.min_face = 80; mtmn_config.min_face = 80;
mtmn_config.pyramid = 0.7; mtmn_config.pyramid = 0.7;
mtmn_config.p_threshold.score = 0.6; mtmn_config.p_threshold.score = 0.6;
@ -697,7 +697,7 @@ void app_httpd_main(){
mtmn_config.o_threshold.score = 0.7; mtmn_config.o_threshold.score = 0.7;
mtmn_config.o_threshold.nms = 0.4; mtmn_config.o_threshold.nms = 0.4;
mtmn_config.o_threshold.candidate_number = 1; mtmn_config.o_threshold.candidate_number = 1;
#endif
ESP_LOGI(TAG, "Starting web server on port: '%d'", config.server_port); ESP_LOGI(TAG, "Starting web server on port: '%d'", config.server_port);
if (httpd_start(&camera_httpd, &config) == ESP_OK) { if (httpd_start(&camera_httpd, &config) == ESP_OK) {
httpd_register_uri_handler(camera_httpd, &index_uri); httpd_register_uri_handler(camera_httpd, &index_uri);