fbpixel
Displaying an OpenCV Image in a PyQt interface

Displaying an OpenCV Image in a PyQt interface

For certain applications, you may find it useful to embed OpenCV in a PyQt interface. In this tutorial, we’ll look at how to correctly integrate and manage a video captured by OpenCV in a PyQt application. N.B.: We use Pyside, but conversion to PyQt is quite...
Shape and color recognition with Python

Shape and color recognition with Python

, The OpenCV library is used for image processing, in particular shape and color recognition. The library has acquisition functions and image processing algorithms that make image recognition fairly straightforward, without the need for artificial intelligence. This...
Stream video from a Raspberry Pi to a web browser

Stream video from a Raspberry Pi to a web browser

, , , In this tutorial, we’ll look at how to stream video from a PiCam on a Raspberry Pi to a web browser. When a camera is connected to a Raspberry Pi, it’s important to be able to access it from anywhere. To do this, you need to set up a server and send...
Object recognition with Python

Object recognition with Python

, , In this tutorial, we’ll look at how to perform object recognition with Python, using a neural network pre-trained with deep learning. We saw in a previors tutorial how to recognize simple shapes using computer vision. This method only works for certain...
Managing an IP Camera with Python

Managing an IP Camera with Python

Whether you want to monitor your flat or the progress of your 3D printing, it can be useful to use an IP camera to have the images available from anywhere. In this tutorial, we will use an IP camera from which we will retrieve the images via Python. This tutorial can...