modify recognition example
|
@ -1 +1 @@
|
||||||
Subproject commit 4ed00b5f61bb59b54ff56fba14597eed87c7b36a
|
Subproject commit aa26bd4db766604b7c23e8756c19e879e4d6eea9
|
|
@ -46,6 +46,22 @@ void facenet_output_image(void *buffer)
|
||||||
xTaskNotifyGive(gpst_input_task);
|
xTaskNotifyGive(gpst_input_task);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char *number_suffix(int32_t number)
|
||||||
|
{
|
||||||
|
uint8_t n = number % 10;
|
||||||
|
|
||||||
|
if (n == 0)
|
||||||
|
return "zero";
|
||||||
|
else if (n == 1)
|
||||||
|
return "st";
|
||||||
|
else if (n == 2)
|
||||||
|
return "nd";
|
||||||
|
else if (n == 3)
|
||||||
|
return "rd";
|
||||||
|
else
|
||||||
|
return "th";
|
||||||
|
}
|
||||||
|
|
||||||
void task_process(void *arg)
|
void task_process(void *arg)
|
||||||
{ /*{{{*/
|
{ /*{{{*/
|
||||||
dl_matrix3du_t *image_matrix = dl_matrix3du_alloc(1,
|
dl_matrix3du_t *image_matrix = dl_matrix3du_alloc(1,
|
||||||
|
@ -64,9 +80,10 @@ void task_process(void *arg)
|
||||||
fptp_t thresh = FACE_REC_THRESHOLD;
|
fptp_t thresh = FACE_REC_THRESHOLD;
|
||||||
dl_matrix3d_t *id_list[FACE_ID_SAVE_NUMBER] = {0};
|
dl_matrix3d_t *id_list[FACE_ID_SAVE_NUMBER] = {0};
|
||||||
|
|
||||||
char delay_before_login = 3;
|
int8_t count_down_second = 3; //second
|
||||||
int is_logging = 1;
|
int8_t is_enrolling = 1;
|
||||||
int next_logging_index = 0;
|
int32_t next_enroll_index = 0;
|
||||||
|
int8_t left_sample_face;
|
||||||
|
|
||||||
int64_t timestamp = 0;
|
int64_t timestamp = 0;
|
||||||
|
|
||||||
|
@ -89,39 +106,39 @@ void task_process(void *arg)
|
||||||
|
|
||||||
if (align_face(net_boxes, image_matrix, aligned_face) == ESP_OK)
|
if (align_face(net_boxes, image_matrix, aligned_face) == ESP_OK)
|
||||||
{
|
{
|
||||||
if ((is_logging == 1) && (next_logging_index < FACE_ID_SAVE_NUMBER))
|
//count down
|
||||||
|
while (count_down_second > 0)
|
||||||
{
|
{
|
||||||
// delay
|
ESP_LOGE(TAG, "Face ID Enrollment Starts in %ds.", count_down_second);
|
||||||
if (delay_before_login > 1)
|
|
||||||
{
|
|
||||||
delay_before_login--;
|
|
||||||
ESP_LOGE(TAG, "Login start in %d.", delay_before_login);
|
|
||||||
|
|
||||||
facenet_output_image(img_buffer);
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
||||||
|
|
||||||
continue;
|
count_down_second--;
|
||||||
}
|
|
||||||
else if (delay_before_login == 1)
|
if (count_down_second == 0)
|
||||||
{
|
ESP_LOGE(TAG, ">>> Face ID Enrollment Starts <<<");
|
||||||
ESP_LOGE(TAG, ">>> Start Face Login <<<");
|
|
||||||
delay_before_login--;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// login
|
//enroll
|
||||||
if (id_list[next_logging_index] == NULL)
|
if ((is_enrolling == 1) && (next_enroll_index < FACE_ID_SAVE_NUMBER))
|
||||||
{
|
{
|
||||||
id_list[next_logging_index] = dl_matrix3d_alloc(1, 1, 1, FACE_ID_SIZE);
|
if (id_list[next_enroll_index] == NULL)
|
||||||
}
|
id_list[next_enroll_index] = dl_matrix3d_alloc(1, 1, 1, FACE_ID_SIZE);
|
||||||
|
|
||||||
if (login(aligned_face, id_list[next_logging_index], LOGIN_CONFIRM_TIMES) == ESP_OK)
|
left_sample_face = enroll(aligned_face, id_list[next_enroll_index], ENROLL_CONFIRM_TIMES);
|
||||||
{
|
ESP_LOGE(TAG, "Face ID Enrollment: Take the %d%s sample",
|
||||||
next_logging_index++;
|
ENROLL_CONFIRM_TIMES - left_sample_face,
|
||||||
ESP_LOGE(TAG, "Login ID: %d", next_logging_index);
|
number_suffix(ENROLL_CONFIRM_TIMES - left_sample_face));
|
||||||
|
|
||||||
if (next_logging_index == FACE_ID_SAVE_NUMBER)
|
if (left_sample_face == 0)
|
||||||
{
|
{
|
||||||
is_logging = 0;
|
next_enroll_index++;
|
||||||
ESP_LOGE(TAG, ">>> Start Face Recognition <<<");
|
ESP_LOGE(TAG, "Enrolled Face ID: %d", next_enroll_index);
|
||||||
|
|
||||||
|
if (next_enroll_index == FACE_ID_SAVE_NUMBER)
|
||||||
|
{
|
||||||
|
is_enrolling = 0;
|
||||||
|
ESP_LOGE(TAG, ">>> Face Recognition Starts <<<");
|
||||||
vTaskDelay(2000 / portTICK_PERIOD_MS);
|
vTaskDelay(2000 / portTICK_PERIOD_MS);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -134,18 +151,17 @@ void task_process(void *arg)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
timestamp = esp_timer_get_time();
|
timestamp = esp_timer_get_time();
|
||||||
int matched_id = recognize_face(aligned_face,
|
|
||||||
|
uint16_t matched_id = recognize_face(aligned_face,
|
||||||
id_list, thresh,
|
id_list, thresh,
|
||||||
next_logging_index);
|
next_enroll_index);
|
||||||
if (matched_id)
|
if (matched_id)
|
||||||
{
|
ESP_LOGE(TAG, "Matched Face ID: %d", matched_id);
|
||||||
ESP_LOGE(TAG, "Matched ID: %d", matched_id);
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
ESP_LOGE(TAG, "No Matched Face ID");
|
||||||
ESP_LOGE(TAG, "No Matched ID");
|
|
||||||
}
|
ESP_LOGI(TAG, "Recognition time consumption: %lldms",
|
||||||
ESP_LOGI(TAG, "Recognition time consumption: %lldms", (esp_timer_get_time() - timestamp) / 1000);
|
(esp_timer_get_time() - timestamp) / 1000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -34,6 +34,9 @@ extern "C"
|
||||||
#include "image_util.h"
|
#include "image_util.h"
|
||||||
#include "app_camera.h"
|
#include "app_camera.h"
|
||||||
|
|
||||||
|
#define ENROLL_CONFIRM_TIMES 3
|
||||||
|
#define FACE_ID_SAVE_NUMBER 1
|
||||||
|
|
||||||
void app_facenet_main();
|
void app_facenet_main();
|
||||||
|
|
||||||
#if __cplusplus
|
#if __cplusplus
|
||||||
|
|
BIN
img/detected.png
Before Width: | Height: | Size: 22 KiB |
BIN
img/matched.png
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 20 KiB |
BIN
img/overview.jpg
Before Width: | Height: | Size: 555 KiB After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 30 KiB |