Color Tracking (OpenCv + Python + Arduino)

This project will show how to detect figures and colors with Arduino and Python (OpenCV) and make the camera follow the figure with the color that must be previously segmented. Hardware Requirement : Arduino UNO Web Cam Servos x 2 Breadboard Software Requirement : Python 3.7 OpenCV pyserial numpy . Installing 'pyserial' , 'OpenCV" and "numpy" in python : To install these modules we will use use pip install First open CMD and type the following codes >pip install serial >pip install opencv-python >pip install numpy Python Script ################################### # Requirements # pip install PySerial # pip install opencv-python ################################### # Import the module for access to the serial port import serial # Import the module for time-related functions import time # Importe the Opencv module import cv2 # Imprt numpy to segment the image i...