awesome-repositories.com
Blog
MCP
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 dépôts

Awesome GitHub RepositoriesConnected Component Identification

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.

Awesome Connected Component Identification GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • azl397985856/leetcodeAvatar de azl397985856

    azl397985856/leetcode

    55,758Voir sur GitHub↗

    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.

    JavaScriptalgoalgorithmalgorithms
    Voir sur GitHub↗55,758
  • hybridgroup/gocvAvatar de hybridgroup

    hybridgroup/gocv

    7,463Voir sur GitHub↗

    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.

    Go
    Voir sur GitHub↗7,463
  • shimat/opencvsharpAvatar de shimat

    shimat/opencvsharp

    6,011Voir sur GitHub↗

    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.

    C#computer-visiondotnetdotnetstandard
    Voir sur GitHub↗6,011
  • garnele007/swiftocrAvatar de garnele007

    garnele007/SwiftOCR

    4,632Voir sur GitHub↗

    SwiftOCR est une bibliothèque Swift native conçue pour extraire du texte et des caractères alphanumériques à partir d'images. Elle fonctionne comme un reconnaisseur de texte par réseau de neurones qui identifie les caractères et les chaînes à partir de données visuelles. La bibliothèque inclut un entraîneur de modèle OCR personnalisé et des outils pour la reconnaissance de polices personnalisées. Ces capacités permettent la génération de réseaux de neurones spécialisés adaptés à des polices et des jeux de caractères spécifiques pour améliorer la précision de la reconnaissance. Le système utilise l'étiquetage des composantes connexes pour identifier les régions de caractères individuelles et emploie le traitement d'image pour convertir de courts codes alphanumériques en texte numérique.

    Employs connected-component identification to locate individual character blobs in images.

    Swift
    Voir sur GitHub↗4,632
  • zxing-js/libraryAvatar de zxing-js

    zxing-js/library

    2,917Voir sur GitHub↗

    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.

    TypeScriptbarcodedecoding-imagesencoding-library
    Voir sur GitHub↗2,917
  • marcosfede/algorithmsAvatar de marcosfede

    marcosfede/algorithms

    1,132Voir sur GitHub↗

    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.

    Pythonalgorithmbfscompetitive-programming
    Voir sur GitHub↗1,132
  1. Home
  2. Software Engineering & Architecture
  3. Algorithmic Problem Solving
  4. Grid Connectivity Solving
  5. Connected Component Identification

Explorer les sous-tags

  • Pixel Connectivity AnalysisIdentifying and labeling contiguous regions of pixels in binary images. **Distinct from Connected Component Identification:** Applies connected component analysis to image pixels rather than abstract data grids.