Tagged articles
6 articles
Page 1 of 1
Python Programming Learning Circle
Python Programming Learning Circle
Dec 18, 2024 · Artificial Intelligence

Object Detection in Python Using Template Matching

This article demonstrates how to perform object detection in Python without machine‑learning frameworks by using OpenCV’s template‑matching functions, covering single‑object detection, multi‑object detection with thresholding, and providing complete code examples for loading images, matching, locating matches, drawing bounding boxes, and visualizing results.

Computer VisionOpenCVTemplate Matching
0 likes · 6 min read
Object Detection in Python Using Template Matching
Huawei Cloud Developer Alliance
Huawei Cloud Developer Alliance
Mar 23, 2021 · Artificial Intelligence

How to Recognize Credit Card Numbers with OpenCV: A Step‑by‑Step Tutorial

This tutorial walks through a project‑based OpenCV workflow that reads a digit template, preprocesses both template and credit‑card images, extracts individual numbers, matches them against the template, and finally overlays the recognized digits onto the original image, illustrating core computer‑vision techniques.

Computer VisionImage ProcessingOCR
0 likes · 10 min read
How to Recognize Credit Card Numbers with OpenCV: A Step‑by‑Step Tutorial
360 Tech Engineering
360 Tech Engineering
Aug 7, 2020 · Artificial Intelligence

Guide to Image Matching: Template Matching, Feature Matching with SIFT and FLANN, and Homography

This guide explains image matching techniques, covering template matching with OpenCV, various matching methods, SIFT feature extraction and description, FLANN-based nearest neighbor matching, homography estimation, practical challenges, and a brief overview of YOLO training, providing code examples and visual illustrations.

Computer VisionFLANNFeature Matching
0 likes · 15 min read
Guide to Image Matching: Template Matching, Feature Matching with SIFT and FLANN, and Homography
360 Quality & Efficiency
360 Quality & Efficiency
May 29, 2020 · Artificial Intelligence

Image Matching Techniques: Template Matching, Feature Matching, SIFT, FLANN, and Homography

This article introduces image matching fundamentals, covering template matching methods, feature-based approaches such as SIFT and FLANN, their implementation details, matching rules, homography transformation, and practical considerations, providing a comprehensive overview for computer vision applications.

Computer VisionFLANNFeature Matching
0 likes · 14 min read
Image Matching Techniques: Template Matching, Feature Matching, SIFT, FLANN, and Homography
Mafengwo Technology
Mafengwo Technology
Mar 8, 2019 · Artificial Intelligence

How Dynamic Template Matching Transforms User Review Tag Extraction

This article explains a flexible template‑matching approach that dynamically extracts concise, user‑friendly tags from online travel reviews, detailing the system architecture, key concepts, step‑by‑step implementation, and matching rules that improve recall and relevance.

AINLPTemplate Matching
0 likes · 15 min read
How Dynamic Template Matching Transforms User Review Tag Extraction
Architecture Digest
Architecture Digest
Feb 9, 2018 · Artificial Intelligence

Implementing a WeChat Jump Game Bot Using Python and OpenCV

This article explains how to use Python and OpenCV to automatically locate the player character and the next landing platform in the WeChat Jump game by applying template matching, Canny edge detection, image cropping, and pixel analysis to calculate the required press duration.

Canny Edge DetectionOpenCVPython
0 likes · 9 min read
Implementing a WeChat Jump Game Bot Using Python and OpenCV