Gesture recognition on Raspberry Pi Pico with Arm Mbed OS
Now that the model is ready, we can deploy it on the Raspberry Pi Pico.
In this recipe, we will build a continuous gesture recognition application with the help of Edge Impulse, Arm Mbed OS, and an algorithm to filter out redundant or spurious classification results.
The following Arduino sketch contains the code that will be referred to in this recipe:
06_gesture_recognition.ino
:
Getting ready
In this recipe, we will make our Raspberry Pi Pico capable of recognizing gestures with the help of the library that's generated by Edge Impulse for Arduino IDE. In Chapter 4, Voice Controlling LEDs with Edge Impulse, we used a pre-built example to accomplish this. However, here, we will implement the entire program from scratch.
Our goal is to develop a continuous gesture recognition...