Become a leader in the IoT community!
Join our community of embedded and IoT practitioners to contribute experience, learn new skills and collaborate with other developers with complementary skillsets.
Join our community of embedded and IoT practitioners to contribute experience, learn new skills and collaborate with other developers with complementary skillsets.
Hello everyone,
For a Week I have been trying to resolve an issue with my ESP32 CAM module, that I’m unable to capture images and unable to recognise faces with it
I tried to install ESP-WHO library to my Arduino ide
But I’m unable to find it in examples and I also failed in finding esp-who library’s .ino file
Looking for your someone’s assistance
did you enable the face recognition in tour code ? #define CONFIG_ESP_FACE_DETECT_ENABLED 1
Actually I’m not much aware about programming ESP cam module
Can you please send me the code, if possible!
I’m not getting face recognition and capture options


so you want to do face recognition in espcam ?
try to add it manualy
Yes @wafa_ath
did you check if the camera work by running a web server exemple ?
Yes I checked
But I didn’t find any capture and face recognition options 🙄
in CameraWebServer exemple
I got this in webserver

try too look for this line
if you don’t find it add it
if you find it 0 enable it to 1
I didn’t find those lines in the .ino file
esp_cam_exp_code.pdf
@wafa_ath this is the code present in the camerawebserver.ino file
ow yes the new version of the camera server does not have the face recognition option
Can you Please tell me, what I should do
please first chek if your espcam support PSRAM
try run this code
#include
void setup() {
Serial.begin(115200);
delay(1000);
if (psramFound()) {
Serial.println(“PSRAM is available!”);
} else {
Serial.println(“PSRAM is not available.”);
}
}
void loop() {
}
@k.l.nagaraju PSRAM is very necessary to run detection
Ok, give me a moment, I will run and let you know
CONTRIBUTE TO THIS THREAD