6 个仓库
Algorithms for identifying and counting contiguous regions of identical values in a grid.
Distinct from Grid Connectivity Solving: Focuses on simple connectivity and component counting using DFS, whereas Grid Connectivity Solving focuses on plug-based DP for tiling.
Explore 6 awesome GitHub repositories matching software engineering & architecture · Connected Component Identification. Refine with filters or upvote what's useful.
This project is a curated educational resource and solution repository for algorithmic challenges, specifically focused on LeetCode problems. It serves as a technical reference for common data structures and algorithmic patterns, providing verified code implementations across multiple programming languages alongside detailed logic and complexity analysis. The repository functions as a comprehensive study guide for competitive programming and technical interview preparation. It includes specialized learning tools such as an Anki flashcard dataset for spaced repetition and a browser extension t
Implements depth-first search to identify and count connected components within 2D grids.
GoCV is a computer vision library and Go language binding for OpenCV. It serves as an image processing toolkit and deep learning inference engine, providing programmatic access to a wide range of algorithms for image manipulation, object detection, and video analysis. The project differentiates itself through high-performance native bindings and hardware acceleration. It utilizes a foreign function interface to map Go calls to C++ functions and includes a hardware-agnostic backend dispatch to route neural network tasks to computation engines such as CUDA and OpenVINO. The library covers a br
Labels and counts connected regions of pixels to separate distinct objects in binary images.
OpenCVSharp is a .NET library that wraps native OpenCV functions, providing C# developers with access to OpenCV's computer vision capabilities through an API that mirrors the native C/C++ style. It serves as a managed wrapper for image processing, feature detection, object detection, and image manipulation tasks, while also handling automatic disposal of unmanaged OpenCV resources like Mat objects to prevent memory leaks in .NET applications. The library enables keypoint detection and descriptor extraction using algorithms such as AKAZE, BRISK, or FAST, with brute-force or FLANN-based matchin
Labels connected regions of foreground pixels in binary images and returns blob properties.
SwiftOCR 是一个原生 Swift 库,旨在从图像中提取文本和字母数字字符。它作为一个神经网络文本识别器,从视觉数据中识别字符和字符串。 该库包含一个自定义 OCR 模型训练器和用于自定义字体识别的工具。这些功能允许生成针对特定字体和字符集定制的神经网络,以提高识别准确率。 该系统利用连通分量标记来识别单个字符区域,并采用图像处理将短字母数字代码转换为数字文本。
Employs connected-component identification to locate individual character blobs in images.
This library is a multi-format barcode processing utility designed for web browsers and server-side environments. It provides a comprehensive suite of tools for both decoding existing barcode symbols and generating new ones from input data. The project distinguishes itself by enabling continuous, real-time barcode scanning directly from live video streams. By utilizing browser camera interfaces and automated frame processing, it allows applications to capture and interpret one-dimensional and two-dimensional barcode data without requiring manual image uploads or user intervention. Beyond rea
Analyzes pixel luminance to isolate high-contrast barcode patterns from background noise in raw image data.
This project is a comprehensive repository of fundamental computer science algorithms and data structures designed as a reference for academic study, technical interview preparation, and competitive programming. It provides standardized implementations of core computational strategies, serving as an educational resource for developers to master software engineering fundamentals and algorithmic problem-solving. The collection distinguishes itself through a multi-language approach, offering cross-language solutions for complex tasks ranging from graph traversal and dynamic programming to bitwis
Implements algorithms for identifying and counting contiguous regions of identical values in a grid.