Real-Time Face Detection with Raspberry Pi

Real-Time Face Detection with Raspberry Pi

Selected from hackster Author: MJRoBot Translated by Machine Heart This article introduces how to use OpenCV and Python to achieve a face detection project on Raspberry Pi. The project not only describes the specific steps required to recognize faces but also provides a lot of extended knowledge. Moreover, this project does not require readers to … Read more

Installing OpenCV 4.1.2 on Raspberry Pi

Installing OpenCV 4.1.2 on Raspberry Pi

Hardware Preparation: It is recommended to use a 32G MicroSD card to install Raspberry Pi (16G and 8G MicroSD cards have not been tested). 1 – Ensure Network Stability This is very important; if the network is unstable, it is recommended not to waste time. 2 – Install Dependencies/Libraries Install the necessary compiler: sudo apt-get … Read more

Image Tracking and Face Recognition with Raspberry Pi and OpenCV

Image Tracking and Face Recognition with Raspberry Pi and OpenCV

Computer Vision | Machine Vision | Machine Learning | Deep Learning Editor’s Note The Raspberry Pi is one of the earliest popular embedded Linux boards, essentially a small computer the size of a credit card. You can connect the Raspberry Pi to a TV, monitor, keyboard, mouse, and use it as a normal Linux computer; … Read more

How to Compile and Install OpenCV and OpenCV Contrib from Source on ARM Development Boards

How to Compile and Install OpenCV and OpenCV Contrib from Source on ARM Development Boards

This article mainly introduces how to compile and install OpenCV and OpenCV contrib from source on ARM development boards. The source code of OpenCV mainly consists of the following two parts: github.com/opencv/opencv (Main repository) github.com/opencv/opencv_contrib (Includes some newer, less stable, experimental modules) Before compiling, you need to download the latest Release from GitHub (the current … Read more

Installing OpenCV on Raspberry Pi 4B for Mobile Robot Control

Installing OpenCV on Raspberry Pi 4B for Mobile Robot Control

opencv This article introduces the installation of OpenCV on Raspberry Pi 4B. Due to the relatively large project, it is developed in C++ rather than Python, making the installation of OpenCV somewhat more complex. During the installation process, some issues may arise due to the OpenCV version being too high for the Raspberry Pi system. … Read more

Real-time Face Recognition with Raspberry Pi

Real-time Face Recognition with Raspberry Pi

This article introduces how to complete a face detection project on Raspberry Pi using OpenCV and Python. The project not only describes the specific steps required to identify faces but also provides a lot of extended knowledge. Furthermore, this project does not require readers to have a detailed understanding of face recognition theory, making it … Read more