feitgemel

Text detection with Python and Opencv | OCR using EasyOCR

text detection

Text Recognition in Images with OpenCV and EasyOCR This Python script demonstrates how to perform text recognition in image files using the combined power of OpenCV, EasyOCR, and Matplotlib. The process begins by loading an image with text recognition OpenCV techniques, then detecting and extracting text using EasyOCR’s pre-trained English model. The detected text is […]

Text detection with Python and Opencv | OCR using EasyOCR Read More »

OpenCV Image Comparison in Python: Detect Differences Like a Pro.

OpenCV image comparison

Introduction This tutorial shows how to build an OpenCV image comparison pipeline in Python that detects visual differences between two images and highlights them with bounding boxes.You will learn how to preprocess the input, isolate the two pictures inside a collage, align their sizes, compute pixel-wise differences, reduce noise, and extract clean contours of the

OpenCV Image Comparison in Python: Detect Differences Like a Pro. Read More »

Car Detection in Videos with OpenCV and Python

OpenCV Background Subtraction for Car Detection in Python

Why Background Subtraction Works for Car Detection Car detection in video starts by separating moving objects from a static background. Background subtraction is a simple yet powerful technique to isolate the foreground and extract moving vehicles:contentReference[oaicite:0]{index=0}. It’s ideal for traffic scenes where the background continuously changes and no “clean” background image is available:contentReference[oaicite:1]{index=1}. By combining

Car Detection in Videos with OpenCV and Python Read More »

How to Extract Text from Scanned Books with Python and OpenCV

OpenCV Word Segmentation

Introduction — Bringing Old Pages to Digital Life Optical Character Recognition (OCR) is a technology used to extract text from images which is used in applications like document digitization, license plate recognition and automated data entry. If you’ve ever wanted to digitize a physical book or scanned document, you know that the hardest part is getting

How to Extract Text from Scanned Books with Python and OpenCV Read More »

Image Segmentation in OpenCV with Python and Contours

OpenCV Image Segmentation

Introduction In this tutorial, you will learn a practical pipeline for OpenCV image segmentation in Python.We will convert an image to grayscale, apply a smart binary threshold, detect contours, and then build a mask to extract the main object.This workflow is fast, reproducible, and ideal for object extraction, background removal, and preprocessing for computer vision

Image Segmentation in OpenCV with Python and Contours Read More »

Python Image Segmentation Made Easy with OpenCV and K-means Algorithm

OpenCV Image Segmentation with K-Means in Pytho

Introduction Image segmentation is the process of partitioning an image into meaningful regions (segments) — for example separating foreground from background, isolating objects, or splitting an image into zones of similar color or texture. One classic and relatively simple technique for segmentation is K-means clustering applied in color (or feature) space. In this post, we’ll

Python Image Segmentation Made Easy with OpenCV and K-means Algorithm Read More »

Real-Time Image Classification with Jetson Nano and OpenCV — Complete Guide

Jetson Image Classification

Introduction to real-time image classification with Jetson Nano and Python In this tutorial, we will build a real-time image classification using Jetson Nano Inference and OpenCV in Python.The code connects to a webcam, captures live video, classifies each frame using a deep learning model (GoogLeNet), and overlays the recognized object name directly onto the video

Real-Time Image Classification with Jetson Nano and OpenCV — Complete Guide Read More »

How to Build a Real-Time Video Classifier on NVIDIA Jetson Nano with Python

jetson nano real time image classification

Introduction Real‑time video classification on edge devices opens exciting possibilities—from wildlife monitoring to smart kiosks. NVIDIA’s Jetson Nano is a compact AI computer designed for these tasks. This tutorial walks through building a real‑time video classifier using OpenCV and Python on the Jetson Nano. You’ll learn how to load a pre‑trained neural network (GoogLeNet), process each video

How to Build a Real-Time Video Classifier on NVIDIA Jetson Nano with Python Read More »

How to classify objects using Jetson Nano inference and OpenCV ?

jetson nano image classification

Jetson Nano Image Classification with OpenCV and Python Introduction This tutorial shows how to run Jetson Nano image classification with Python and OpenCV.You will use the NVIDIA Jetson Inference library with GoogleNet to recognize objects in a single image. The goal is to build a CUDA-accelerated pipeline that loads an image, classifies it on the

How to classify objects using Jetson Nano inference and OpenCV ? Read More »

Eran Feit