Lab Working with Color Spaces
Welcome to this tutorial on OpenCV-Python Colorspaces!
OpenCV
Arithmetic Operations on Images
Welcome to this tutorial on arithmetic operations on images using OpenCV-Python! In this tutorial, we will cover addition, subtraction, and bitwise operations. By the end of this tutorial, you will have a solid understanding of how to manipulate images using these basic operations.
OpenCV
Detect Flappy Bird in Video Using OpenCV
This project is designed to teach you how to detect the Flappy Bird character in a video using the cv2.matchTemplate method provided by OpenCV, a powerful library for image processing and computer vision. The cv2.matchTemplate function is a useful tool for template matching, which is a technique in digital image processing for finding small parts of an image that match a template image. In this project, we'll create a Python project that applies this method to detect the Flappy Bird character in a video, making it a practical example for beginners and intermediates in Python and OpenCV.
PythonOpenCV
Getting Started with Videos
Welcome to this lab on how to get started with videos using OpenCV-Python! OpenCV (Open Source Computer Vision) is a powerful library designed for image processing, machine learning, and computer vision applications. In this lab, we'll be focusing on how to work with videos in OpenCV-Python.
OpenCV
Getting Started with Images
This tutorial will teach you the basics of working with images using the OpenCV-Python library. By the end of this tutorial, you will be able to read, display, and save images.
OpenCV
Basic Operations on Image
Welcome to this tutorial on OpenCV-Python! This tutorial will cover some basic operations on images using the OpenCV library in Python.
OpenCV