Hi ! Today I face another challenge: I needed to overlay an image on top of another. Something like this. Lucky for me, and as usual, OpenCV allow us to do this with a few lines of code. Let’s take a look. Line 8. Define a custom size for all the images: background image and…… Continue reading #Coding4Fun – How to control your #drone with 20 lines of code! (19/N)
Tag: Camera
#Coding4Fun – How to control your #drone with 20 lines of code! (18/N)
Hi ! Today I’ll step back a couple of posts, and add 2 simple lines to allow me to save a video file from the Drone camera. This is a request, and it’s makes a lot of sense to have recorded a file with the drone camera. The video will later contains detected objects and…… Continue reading #Coding4Fun – How to control your #drone with 20 lines of code! (18/N)
#Coding4Fun – How to control your #drone with 20 lines of code! (17/N)
Hi ! Once we have the a custom vision trained model instance, we can use it to recognize objects from the drone camera feed. Read my previous posts for descriptions on these. Another interesting scenario, is to save local files for every detected object. In the following code, I’ll save 2 different files for every…… Continue reading #Coding4Fun – How to control your #drone with 20 lines of code! (17/N)
#Coding4Fun – How to control your #drone with 20 lines of code! (16/N)
Hi ! In my previous post, I shared an example where I analyzed the camera feed using a Image Recognition model created using Custom Vision. Today I’ll expand the sample, and show in real time the detected MVPs logos with a frame in the drone camera feed. Let’s take a look at the demo working…… Continue reading #Coding4Fun – How to control your #drone with 20 lines of code! (16/N)
#Coding4Fun – How to control your #drone with 20 lines of code! (15/N)
Hi ! Let’s use Custom Vision to analyze the images from our drone camera. In this scenario, I created a custom model to recognize MVP awards from my MVP wall. I know, that’s bragging, but I like it. Disclaimer: There are plenty of documentation and tutorials about Custom Vision. I won’t go deep on the…… Continue reading #Coding4Fun – How to control your #drone with 20 lines of code! (15/N)
#Coding4Fun – How to control your #drone with 20 lines of code! (12/N)
Hi! Today code objective is very simple, based on a request I received from internet: The drone is flying very happy, but if the camera detects a face, the drone will flip out ! Let’s take a look at the program working: This one is very similar to the previous one. I also realized that…… Continue reading #Coding4Fun – How to control your #drone with 20 lines of code! (12/N)
#Coding4Fun – How to control your #drone with 20 lines of code! (11/N)
Hi! Today code objective is very simple: The drone is flying very happy, but if the camera detects a banana, the drone must land ! Let’s take a look at the program working: And a couple of notes regarding the app Still use Haar Cascades for object detection. I found an article with a Xml…… Continue reading #Coding4Fun – How to control your #drone with 20 lines of code! (11/N)
#Coding4Fun – How to control your #drone with 20 lines of code! (10/N)
Hi! Back to some drone posts! I was kind of busy during the last weeks and now I can get back to write about the drone. OK, in the last posts I described how to connect and work with the drone camera feed using OpenCV. Now with 2 extra lines of code we can also…… Continue reading #Coding4Fun – How to control your #drone with 20 lines of code! (10/N)
#Coding4Fun – How to control your #drone with 20 lines of code! (9/N)
Hi! Let’s take some Frames Per Second measurements on the UDP and OpenCV connection. It seems that working with simple movements, the values moves between 30 and 60 FPS. Just added a couple of lines in the main While, to calculate the FPS. # open i = 0 while True: i = i + 1…… Continue reading #Coding4Fun – How to control your #drone with 20 lines of code! (9/N)
#Coding4Fun – How to control your #drone with 20 lines of code! (8/N)
Hi! Now that I started to understand how UDP works, I also did my research to find which are the best options to access an UDP video feed. Lucky for me, there are plenty of resources about doing this task using my old friend OpenCV. Most of the OpenCV documentation is written in C++. However…… Continue reading #Coding4Fun – How to control your #drone with 20 lines of code! (8/N)