Skip to content

Releases: espressif/esp-who

Face recognition and speech wake up for esp-eye

03 Jan 13:23
Compare
Choose a tag to compare

This is a pre-release for esp-eye.

New Functionalities

  • Face recognition based on face detection
  • Enrollment of face ids in Flash
  • Displaying images in web browser
  • Speech wake-up

Supported Development Boards

The series of development boards with esp32 chip are compatible with the algorithm, but some peripherals, e.g. camera, digital microphone, etc, are required to get data. ESP-EYE is specially designed for face recognition and speech wake up task.

New Examples

  • Camera Web Server
  • Recognition Solution

Binary File

The binary file is for the Recognition Solution, flash address is 0x0000.

Get This Release

git clone -https://github.com/espressif/esp-who.git
cd esp-who
git checkout v0.9.0
git submodule update --init --recursive

Face Detection + Recognition

03 Dec 09:10
Compare
Choose a tag to compare

Face Detection

face_detection.zip

To flash all build output, run:

python $IDF_PATH/components/esptool_py/esptool/esptool.py --chip esp32 --port /dev/ttyUSB1 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size detect 0x1000 bootloader.bin 0x10000 detection_command_line.bin 0x8000 partitions.bin

Face Recognition

face_recognition.zip

To flash all build output, run:

python $IDF_PATH/components/esptool_py/esptool/esptool.py --chip esp32 --port /dev/ttyUSB1 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size detect 0x1000 bootloader.bin 0x10000 recognition_command_line.bin 0x8000 partitions.bin