-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rpi stream images to PC for image recognition #21
Comments
What I did was to stream the images to a Dropbox account folder that is linked on my PC so then the images were immediately available. |
Oh! Does this not mean your dropbox folder gets increasingly bigger in size as the stream goes on? |
Yes, it will end up using dropbox space but I didn't find it too much of a problem. You can clear them out onto your PC to keep the dropbox not getting too full if that's a problem. If you are streaming large volumes of pictures it might not be ideal and you might be better creating a server connection. Here is an example of the code which uploads to a dropbox account import dropbox TOKEN = 'asdfafdafasf' dbx = dropbox.Dropbox(TOKEN) sfilename = 'dropboxuploadtest3.py' stopath = '/' + sfilename sstorefile = 'piclist.csv' stopath = '/' + sstorefile |
Hi! I chanced upon this project while looking for ways to link my rpi ( & pi camera) to send images continuously to my PC. The PC will then run image recognition and processing (yolov5) on it for my project.
However, most guides I came across shows the pi camera just streaming the feed to a website. Is it possible to send the images to a PC instead for processing? Is there a way I can edit your implementation for this use case? If not, are you able to provide any guidance or codes?
Thank you in advance and sorry for the trouble! Really cool project by the way!
The text was updated successfully, but these errors were encountered: