This is an awesome family xmas project. I don't have an old pc around to run YOLO / YOLO Tiny constantly though; can anyone recommend a cheap, suitable server provider for this? AWS EC2?
Building a Poor Man’s Deep Learning Camera in Python
11–20 of 28 posts
Re: Building a Poor Man’s Deep Learning Camera in Python
#12Re: Building a Poor Man’s Deep Learning Camera in Python
#13This is the project I am planning to do with my son as he's getting interested in computers and loves nature. The rough aims are - > Rasp Pi + Camera/PIR to photograph birds > Connect to internet and post to wp, twitter and instagram The final aim is to add an AI component to see if we can detect birds and keep a count
Do you have hummingbirds in your area? You could setup a high fps camera pointed at hummingbird feeder. Hummingbirds aren't afraid to approach a feeder placed just outside the window of a house.
Re: Building a Poor Man’s Deep Learning Camera in Python
#14Here's how I got Darkflow working: https://gist.github.com/simonw/0f93bec220be9cf8250533b603bf6...
For Darknet, I just ran "make" as documented here: https://pjreddie.com/darknet/install/ and then followed the instructions on https://pjreddie.com/darknet/yolo/ and https://pjreddie.com/darknet/nightmare/ to try it out.
Re: Building a Poor Man’s Deep Learning Camera in Python
#15Re: Building a Poor Man’s Deep Learning Camera in Python
#16This is an awesome family xmas project. I don't have an old pc around to run YOLO / YOLO Tiny constantly though; can anyone recommend a cheap, suitable server provider for this? AWS EC2?
Don't you have a computer with a decent GPU? I have trained YOLOv2 on a GTX 1050. A night of training (and starting from pre-trained lower layers) yields good results depending on your application.
Re: Building a Poor Man’s Deep Learning Camera in Python
#17So this can identify anything at all? That’s pretty amazing. Maybe we’re getting closer to a dish washing robot.
Love the project.
Re: Building a Poor Man’s Deep Learning Camera in Python
#18how does this compare with https://aiyprojects.withgoogle.com/vision ? which one is the cheapest and the most funnest to work with ?
(EDIT due to wrongly stating that models run on the Raspberry Pi directly) The Google Vision Kit will run models on a custom neural processing chip connected to the Raspberry Pi Zero. With the DIY setup from the blog bost, the neural network runs on a "large pc" (potentially with GPU). Depending on the hardware you have at your disposal, you can run more complex (and therefore more powerful) neural networks. At the s…
Re: Building a Poor Man’s Deep Learning Camera in Python
#19Earlier quoted context omitted.
Do you have hummingbirds in your area? You could setup a high fps camera pointed at hummingbird feeder. Hummingbirds aren't afraid to approach a feeder placed just outside the window of a house.
no - starlings and sea gulls mainly - nothing exciting
Re: Building a Poor Man’s Deep Learning Camera in Python
#20This article inspired me to have a play around with Darknet and Darkflow - turns out they're pretty easy to get going on an OS X laptop with Python 3 (installed via Homebrew). Here's how I got Darkflow working: https://gist.github.com/simonw/0f93bec220be9cf8250533b603bf6... For Darknet, I just ran "make" as documented here: https://pjreddie.com/darknet/install/ and then followed the instructions on https://pjreddie.c…