In this video we’ll go through a full blown walkthrough of performing Automatic Number Plate Recognition (ANPR) using OpenCV and EasyOCR. We just edge detection and filtering techniques combined with deep learning powered optical character recognition to be able to extract number plate text from images in just 25 minutes.
ANPR might just be the perfect thing for your to try out! In this video we’ll go through a full blown walkthrough of performing Automatic Number Plate Recognition (ANPR) using OpenCV and EasyOCR. We just edge detection and filtering techniques combined with deep learning powered optical character recognition to be able to extract number plate text from images in just 25 minutes.
In this video you’ll learn how to: 0:00 - Start 5:59 - Reading and visualising images using OpenCV with Python 7:37 - Applying color shifts and changes to images (e.g. grayscaling and BGR2RGB) 9:48 - Detecting contours using OpenCV findCountours 14:32 - Masking number plates to improve text extraction for OCR 18:40 - Extracting number plate text using EasyOCR
GET THE CODE!
Subscribe:https://www.youtube.com/channel/UCHXa4OpASJEwrHrLeIzw7Yg
Learn Free how to create a virtual pen and eraser with python and OpenCV with source code and complete guide. This entire application is built fundamentally on contour detection. It can be thought of as something like closed color curves on compromises that have the same color or intensity, it's like a blob. In this project we use color masking to get the binary mask of our target color pen, then we use the counter detection to find the location of this pen and the contour to find it.
OpenCV Python in Python will explain all the basics of OpenCV. It also explains how to create a face recognition system and a motion detector.
In this tutorial, you’re going to learn a variety of Python tricks that you can use to write your Python code in a more readable and efficient way like a pro.
Today you're going to learn how to use Python programming in a way that can ultimately save a lot of space on your drive by removing all the duplicates. We gonna use Python OS remove( ) method to remove the duplicates on our drive. Well, that's simple you just call remove ( ) with a parameter of the name of the file you wanna remove done.
To draw a rectangle in Python using OpenCV, use cv2.rectangle() function. The cv2 rectangle() method is used to draw a rectangle on any image.