Gesture Recognition Modules for Raspberry Pi with .NET

Gesture Recognition Modules for Raspberry Pi with .NET

↓Recommended Follow ↓ Introduction If you ask how useful gesture recognition really is, it’s hard to say; it’s neither too big nor too small. In daily life, we see it being used in various small devices like lamps and kitchen switches. From a practical standpoint, having gesture-controlled switches in the kitchen is quite nice; sometimes … Read more

Transform Your Raspberry Pi into a Penetration Testing Tool

Transform Your Raspberry Pi into a Penetration Testing Tool

*This article is written by: Meow God 2017, and it belongs to the FreeBuf original reward program. Reproduction without permission is prohibited. Preparation and Introduction Once, a friend of mine said he wanted to buy the hak5 Bash Bunny, a network hijacking keyboard injection all-in-one BadUSB. It looked great, but unfortunately, my friend said he … Read more

Getting Started with Raspberry Pi GPIO for IoT

Getting Started with Raspberry Pi GPIO for IoT

Chapter 1: Basics of RPi.GPIO Module Importing the Module To import the RPi.GPIO module: import RPi.GPIO as GPIO By doing this, you can refer to it as GPIO for the rest of this script. You can check if the module was imported successfully by throwing an exception: try: import RPi.GPIO as GPIO except RuntimeError: print("Error … Read more

Getting Started with Raspberry Pi: Human Infrared Sensing Alarm System

Getting Started with Raspberry Pi: Human Infrared Sensing Alarm System

The previous LED light used the output function of GPIO, and this time we finally need to use the input function of GPIO. Since the use of this human infrared sensing module is relatively simple, we will create a simple human sensing alarm system in conjunction with the previous buzzer after the experiment is complete. … Read more

Orange Pi Ai Pro Development Board Pre-installed with MindSpore to Empower Developers in Model Innovation

Orange Pi Ai Pro Development Board Pre-installed with MindSpore to Empower Developers in Model Innovation

Clickthebluetext MindSpore Follow us Recently, the MindSpore open-source community has closely collaborated with Orange Pi to pre-install the MindSpore AI framework on the Orange Pi Ai Pro development board’s system image. This will continue to evolve in subsequent version iterations, currently supporting all network models covered in the MindSpore official tutorials. The official system images … Read more

Using USB Camera with Orange Pi

Using USB Camera with Orange Pi

For detailed information, please refer to Section 3.13.6 of the “OrangePi_Zero2_H616_User_Manual_v4.0.pdf” regarding USB camera testing. Steps are as follows: 1.First, plug the USB camera into the USB port of the Orange Pi development board.2.Then, use the lsmod command to see that the kernel has automatically loaded the following module: orangepi@orangepi:~$ lsmod | grep uvcvideo | … Read more

How to Upgrade the CANN Software Package on the Orange Pi AIPro Development Board

How to Upgrade the CANN Software Package on the Orange Pi AIPro Development Board

The Orange Pi AIPro development board is a high-performance AI development board carefully crafted by Orange Pi and Ascend. Developers can quickly build AI applications and services based on the Ascend CANN software stack capabilities, achieving various data analysis and inference calculations such as images and videos. However, the pre-installed image on the development board … Read more

Preprocessing Video/Image Data Based on Orange Pi AIpro

Preprocessing Video/Image Data Based on Orange Pi AIpro

01 Background Introduction Due to factors such as network structure and training methods, most neural network models have format restrictions on input data. In the field of computer vision, these restrictions are mostly reflected in image size, color space, normalization parameters, etc. If the source image or video does not meet the requirements of the … Read more