Greetings All! I know that there are many resources about facial recognition using the RPi camera. I'm using the ESP camera, and I'm trying to do an image capture for comparison.
Steps:
-
Get the ESP32 CAM node up and running <-- WORKS, I DO see a valid snapshot when I browse to http://192.168.1.115/cam-hi.jpg (the IP address of my ESP32 cam)
-
In Node Red, use an inject node to trigger an http GET request, where the URL is the ESP32 IP address in step 1 <--Works: when I use a debug node, I DO see the output of the "http request" node after I trigger it. The output looks like garble, but it IS there.
-
Now that I have a response from the GET request, how do I "convert" this response into an actual picture?
--> Overall, I plan on using this picture to compare it to a known database of pictures for facial recognition (as in, "does this snapshot match anyone in our database? YES or NO").
Thank you for your help!