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

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektMCP-ServerÜber unsRanking-MethodikPresse
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

7 Repos

Awesome GitHub RepositoriesFeature Descriptor Computation

Generating numerical vectors that describe keypoints to allow image matching.

Distinct from Computer Vision Features: Focuses on the creation of the descriptor vector rather than just the extraction of the feature point.

Explore 7 awesome GitHub repositories matching artificial intelligence & ml · Feature Descriptor Computation. Refine with filters or upvote what's useful.

Awesome Feature Descriptor Computation GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • kulbear/deep-learning-courseraAvatar von Kulbear

    Kulbear/deep-learning-coursera

    7,729Auf GitHub ansehen↗

    This repository contains programming assignments and lecture notes from Andrew Ng's foundational deep learning course specialization on Coursera. The materials cover core neural network training techniques including optimization algorithms, normalization methods, regularization approaches, parameter initialization strategies, and learning rate scheduling to improve model convergence and generalization. The coursework explores design principles where successive neural network layers learn progressively more abstract feature representations from input data. It provides guidance on selecting ope

    Build deeper layers that compute more complex input features than earlier layers in a neural network.

    Jupyter Notebookcourseradeep-learning
    Auf GitHub ansehen↗7,729
  • hybridgroup/gocvAvatar von hybridgroup

    hybridgroup/gocv

    7,463Auf GitHub ansehen↗

    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

    Generates numerical representations of keypoints to enable comparison and matching of different images.

    Go
    Auf GitHub ansehen↗7,463
  • nwojke/deep_sortAvatar von nwojke

    nwojke/deep_sort

    6,148Auf GitHub ansehen↗

    DeepSORT ist ein Framework für Echtzeit-Multi-Objekt-Tracking, das darauf ausgelegt ist, konsistente Identitäten mehrerer Objekte über Video-Frames hinweg beizubehalten. Es integriert Deep-Learning-Erscheinungsmerkmale mit Bewegungsdeskriptoren, um Objekte durch eine Sequenz von Videodaten zu verfolgen. Das System nutzt ein tiefes Convolutional Neural Network, um hochdimensionale visuelle Deskriptoren für die Personen-Re-Identifizierung zu generieren. Diese Erscheinungsmerkmale werden mit Bewegungsschätzung via Kalman-Filter kombiniert und mittels des ungarischen Algorithmus gelöst, um Detektionen optimal mit bestehenden Tracks zu assoziieren. Das Framework enthält Funktionen für Gating-basiertes Assoziations-Filtering und Zustands-basiertes Track-Management, um Objekt-Lifecycles zu handhaben. Zudem bietet es Tools zum Rendern von Tracking-Ergebnissen auf Video-Frames und zur Evaluierung der Tracking-Leistung anhand etablierter Benchmarks.

    Generates numerical feature descriptors for bounding boxes to enable similarity comparison.

    Python
    Auf GitHub ansehen↗6,148
  • shimat/opencvsharpAvatar von shimat

    shimat/opencvsharp

    6,011Auf GitHub ansehen↗

    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

    Chains keypoint detection, descriptor extraction, and brute-force or FLANN-based matching.

    C#computer-visiondotnetdotnetstandard
    Auf GitHub ansehen↗6,011
  • arrayfire/arrayfireAvatar von arrayfire

    arrayfire/arrayfire

    4,888Auf GitHub ansehen↗

    ArrayFire ist ein hardware-agnostisches Compute-Framework und eine JIT-kompilierte Tensor-Engine für numerische Hochleistungsberechnungen. Es dient als GPU-Bibliothek für numerische Berechnungen und Toolkit für parallele Signalverarbeitung, das Hardware-Backends abstrahiert und es ermöglicht, denselben Code auf verschiedenen GPU-Architekturen und CPUs auszuführen. Das Projekt zeichnet sich durch eine JIT-Engine aus, die Ausdruckskompilierung verwendet, um Operationen zu verschmelzen und den Speicher-Overhead zu minimieren. Es nutzt einen verzögerten Ausführungsgraphen zur Optimierung von Berechnungsketten und bietet Interoperabilitäts-Primitive, um Daten und Ausführungskontexte mit externen Compute-Plattformen wie CUDA und OpenCL zu teilen. Die Bibliothek deckt ein breites Spektrum an Fähigkeiten ab, einschließlich paralleler linearer Algebra, digitaler Signalverarbeitung und beschleunigter Computer Vision. Sie bietet Werkzeuge für die Implementierung von maschinellem Lernen, Simulationen für Finanzmodelle und die Lösung partieller Differentialgleichungen für physikalische Systemsimulationen. Das Tensor-Managementsystem verwaltet die Zuweisung mehrdimensionaler Arrays, Slicing sowie Datentransfers zwischen Host und Gerät.

    Generates numerical representations of image regions to enable efficient comparison between different images.

    C++arrayfirecc-plus-plus
    Auf GitHub ansehen↗4,888
  • bnsreenu/python_for_microscopistsAvatar von bnsreenu

    bnsreenu/python_for_microscopists

    4,402Auf GitHub ansehen↗

    This project is a Python bio-imaging toolkit and analysis suite designed for processing and analyzing microscopy and medical images. It provides a collection of tools for image quantification, medical image segmentation, and general bio-imaging workflows. The suite includes specialized capabilities for quantifying biological data, such as measuring neuron branching complexity via Sholl analysis, calculating particle size distributions, and tracking wound area in scratch assays. It also features a medical image segmentation library that implements U-Net architectures for isolating anatomical s

    Generates numerical descriptors for keypoints that capture scale and orientation for feature matching.

    Jupyter Notebook
    Auf GitHub ansehen↗4,402
  • hustvl/vimAvatar von hustvl

    hustvl/Vim

    3,882Auf GitHub ansehen↗

    Vim is a state space model vision framework designed for image classification and visual representation learning. It functions as a computer vision research tool that converts two-dimensional image grids into one-dimensional sequences to extract spatial features. The system implements a linear-scaling image classifier that replaces quadratic attention mechanisms with state space operations. This approach utilizes bidirectional sequence modeling and selective gating mechanisms to process visual data. The framework covers computer vision benchmarking and image classification research, providin

    Organizes visual data across multiple abstraction levels to capture local and global context.

    Python
    Auf GitHub ansehen↗3,882
  1. Home
  2. Artificial Intelligence & ML
  3. Computer Vision Features
  4. Feature Descriptor Computation

Unter-Tags erkunden

  • Descriptor MatchersFinds corresponding points across two images by comparing descriptor sets with brute-force or FLANN-based matchers. **Distinct from Feature Descriptor Computation:** Distinct from Feature Descriptor Computation: focuses on matching computed descriptors across images, not generating them.
  • Hierarchical Feature ComputationsDesign principle where successive neural network layers learn progressively more abstract and complex feature representations from input data. **Distinct from Feature Descriptor Computation:** Distinct from Feature Descriptor Computation: covers the hierarchical abstraction of features across neural network layers, not the generation of descriptor vectors for keypoints.