awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目MCP 服务器关于排名机制媒体报道
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 个仓库

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

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • azl397985856/leetcodeazl397985856 的头像

    azl397985856/leetcode

    55,758在 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
    在 GitHub 上查看↗55,758
  • hybridgroup/gocvhybridgroup 的头像

    hybridgroup/gocv

    7,463在 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
    在 GitHub 上查看↗7,463
  • shimat/opencvsharpshimat 的头像

    shimat/opencvsharp

    6,011在 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
    在 GitHub 上查看↗6,011
  • garnele007/swiftocrgarnele007 的头像

    garnele007/SwiftOCR

    4,632在 GitHub 上查看↗

    SwiftOCR 是一个原生 Swift 库,旨在从图像中提取文本和字母数字字符。它作为一个神经网络文本识别器,从视觉数据中识别字符和字符串。 该库包含一个自定义 OCR 模型训练器和用于自定义字体识别的工具。这些功能允许生成针对特定字体和字符集定制的神经网络,以提高识别准确率。 该系统利用连通分量标记来识别单个字符区域,并采用图像处理将短字母数字代码转换为数字文本。

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

    Swift
    在 GitHub 上查看↗4,632
  • zxing-js/libraryzxing-js 的头像

    zxing-js/library

    2,917在 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
    在 GitHub 上查看↗2,917
  • marcosfede/algorithmsmarcosfede 的头像

    marcosfede/algorithms

    1,132在 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
    在 GitHub 上查看↗1,132
  1. Home
  2. Software Engineering & Architecture
  3. Algorithmic Problem Solving
  4. Grid Connectivity Solving
  5. Connected Component Identification

探索子标签

  • 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.