-
#ESP32CAM – Client Python π app to view WebServer photos πΈ
Hi ! Still learning with the ESP32 CAM board. In today’s post the scenario is simple: Create a client Python app to view remote photos from the ESP32 Cam Arduino device This is a super lower quality photo, but hey, still good enough ! This is a super simple Python and OpenCV app. Full code β read more
-
#Python π – how to find where Python is intalled – working with #reTerminal @Seeedstudio and @code
Hi ! Setting up my Seeedstudio reTerminal and Visual Studio Code, I realized that Python was already installed, but I’m not sure where π€. So, in the Visual Studio Code terminal (you can do this in the bash), first I check the version of Python with the command And, hey I got 3.7 ! Now β read more
-
#ESP32CAM – WebServer taking photos πΈ every N seconds #Arduino
Hi ! Still learning with the ESP32 CAM board. In today’s post the scenario is simple: Init the camera Init the local File System Take a photo every 5 seconds and store it in memory Creates an endpoint named [/photo] to return the last saved photo As the previous sample, I’ll write this using Visual β read more
-
#RaspberryPi β 1st setup no monitor πΊ: Wifi πΆ auto connect, SSH, rename, update, docker π³ and more! Update 2022-Mar-10
Content Hi! Let’s start installing the latest Raspberry Pi OS image in an SD card. Next steps will be focus on how to access and control remotely your device you may want to follow this steps. This tutorial and tips works for Raspberry Pi 3, 4 and Zero. The version 1.6 of Raspberry Pi Imager β read more
-
#ESP32CAM – Taking photos πΈ in the #Arduino board
Hi ! Still learning with the ESP32 CAM board. In today’s post the scenario is simple: Init the camera Take a photo Save the photo to the SD card As the previous sample, I’ll write this using Visual Studio Code and PlatformIO project, using the AI Thinker ESP-32CAM board. And yes, demo here is tricky, β read more
-
#ESP32CAM – Host a webserver, render an HTML Page, trigger the Flash π¦ in the #Arduino board
Hi ! Still learning with the ESP32 CAM board. In today’s post the scenario is simple: Connect the device to a WiFi network Run a webserver on the device Create an endpoint [/flash] Render a page on the host [port 80] with a button Turn on the Flash for 1 second when The endpoint receives β read more
-
#ESP32CAM – Running a WebServer to Flash On π¦π¦π¦ in the #Arduino board
Hi ! Still learning with the ESP32 CAM board. In today’s post the scenario is simple: Connect the device to a WiFi network Run a webserver on the device and create an endpoint [/flash] Turn on the Flash for 1 second when the endpoint receives a request. As the previous sample, I’ll write this using β read more
-
#ESP32CAM – Flash on / Flash off π¦π¦π¦
Hi ! Let’s start a series of posts using an ESP32 CAM board. I had this one from Amazon Canada. Wobekuy ESP32-CAM-MB WiFi Development Board OV2640 Camera Module -USB Interface CH340G USB to Serial Port I choosed this one, because it will avoid me the pain of wiring. So, 1st test, let’s turn the Flash β read more
-
#AzureIoT – Processing Telemetry messages π¨ using Logic Apps
Hi ! Yesterday, I hosted a session with my good friend Ashraf and we talk about how we can use Power BI to create dashboards from telemetry data from Azure IoT (recording here). The basic steps for this scenario is this one We have 1 or more devices connected to Azure IoT Hub. The devices β read more
-
#Windows11 – Live Captions, an amazing feature !
Hi ! The latest Windows 11 Insider release include several features. And this one is in my top 3: Live Captions. Live captions will help everyone, including people who are deaf or hard of hearing, better understand audio by viewing captions of spoken content. Captions are automatically generated on-device from any content with audio. Captions β read more
-
#Drone π – Detect Squirrels πΏοΈ and Space Wolves πΊ from a drone camera using Python π
Hi ! In a couple of hours, I’ll host a session where I show how to control a drone using Python π; and also how to access the drone camera and apply AI on top of the camera feed. Python SWFL – Let’s code a drone to follow faces In example, this is the drone β read more
-
#OpenCV – How to convert to grayscale and show a single color an image πΌοΈ using Python π
Hi ! Super quick post today with a cool scenario to support my TikTok videos in Spanish (I know π): How to convert to grayscale an image and show a single color using python and opencv Here is the output with an original photo from my office and a new image with this effect: Disclaimer: β read more
-
#Event – March AI π§ Series at Toronto Reactor
Hi ! March is a month focused on Artificial Intelligence in the Microsoft Reactor. During the full month we will host sessions focused on AI and ML. Sessions Additional Resources β read more
-
#OpenCV – How to add a Pencil Sketch effect to an image πΌοΈ using Python π
Hi ! Super quick post today with a cool scenario to support my TikTok videos in Spanish (I know π): How to add a pencil sketch effect to an image using python and opencv Here is the output with an original photo from my office and a new image with the pencil sketch effect: Sample β read more
-
#OpenCV – How to add a watermark to an image πΌοΈ using Python π
Hi ! Super quick post today with a cool scenario to support my TikTok videos in Spanish (I know π): How to add a watermark text to an image using python and opencv Here is the output with an original photo from my office and a watermarked one: Sample code: β read more
-
#Event – Introduction to GitHub in Visual Studio Code πat @msftreactor
Hi ! After a quick poll, the following event was the winner for a live session from Microsoft Reactor: Introduction to GitHub in Visual Studio Code π In this session we will learn how to work with Visual Studio Code and GitHub. We will learn different topics, including authentication, publishing repos, and viewing your repo β read more
-
#OpenCV – Access a local camera π€³in F# π
Hi ! NET is in anniversary mode, and in Dev.to blog, someone asked about these samples in F#. It’s been a while since I wrote some F# code, and this is the perfect excuse to start. Today Post: Access a local camera and show the camera frames in an OpenCV window. In following posts we β read more
-
#OpenCV – Detect and blur faces π using DNN in C#
Hi ! NET is in anniversary mode, so I think it will be a good idea to share some camera samples in C#. For these demos I’m using C# 6 and OpenCVSharp as OpenCV wrapper for .NET. Today post: detect a face using a DNN model and blur the face area. This demo also show β read more
-
#OpenCV – Detect and blur faces π using haar cascades in C#
Hi ! NET is in anniversary mode, so I think it will be a good idea to share some camera samples in C#. For these demos I’m using C#, NET 6 and OpenCVSharp as OpenCV wrapper for .NET. Today post: detect a face using haar cascades and blur the face area. This demo also show β read more
-
#OpenCV – Detect and blur faces π using DNN in Python π
Hi ! Quick post today: detect a face using a pretrained DNN model and blur the face area. Easy to implement, and also easy to read: Code below That’s it, sample using DNN. Next challenge will be to do this in F#. β read more