Qengineering / Face-Recognition-Raspberry-Pi-64-bits

Recognize 2000+ faces on your Raspberry Pi 4 with database auto-fill and anti-spoofing
https://qengineering.eu/deep-learning-examples-on-raspberry-32-64-os.html
BSD 3-Clause "New" or "Revised" License
70 stars 18 forks source link

How to send the data to any cloud #3

Closed rsingh2083 closed 3 years ago

rsingh2083 commented 3 years ago

Can you please let me know if its possible to send the attendance data from raspberry to any cloud database ? My question is more specific towards relay from C++ code to Cloud. Im new to cloud hence just need your guidance not much.

Qengineering commented 3 years ago

Dear @rsingh2083,

1) Use only C++ in machine learning or computer vision. It's 10-40 times faster than Python due to its low level and compiled instead of interpreted. 2) You can use Python if you like in case of connecting to the cloud. Now, Python has the advances of being high level (a few lines of code doing a lot of things). And the most time is consumed by the traffic on the net. So, not much to gain if you use C++ here. 3) Write the information for the cloud in a simple text file by your C++ app. 4) Invoke your Python cloud program by a timer (like cron) or on an event base (by the statement system())in your C++ program to upload the text file to the cloud. 5) There are many good tutorials on the net covering this subject in detail with examples now you're able to use Python

Success!