awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
lyuwenyu avatar

lyuwenyu/RT-DETR

0
View on GitHub↗
5,310 نجوم·629 تفرعات·Python·Apache-2.0·9 مشاهدات

RT DETR

RT-DETR هو نموذج كشف كائنات في الوقت الفعلي يعتمد على معمارية محول الكشف (detection transformer). تم تنفيذه كنموذج رؤية حاسوبية لمنصتي التعلم العميق PyTorch وPaddlePaddle، ومصمم لتحديد وتحديد مواقع كائنات متعددة في الصور ومقاطع الفيديو.

يلغي النموذج الحاجة إلى توليد المراسي (anchor generation) وقمع غير الأقصى (non-maximum suppression) باستخدام نهج يعتمد على المحولات. يركز على الكشف عالي الأداء، مع موازنة الدقة وزمن الوصول المنخفض للنشر في البيئات الحية.

يستخدم النظام مشفراً هجيناً ودمج ميزات متعدد المقاييس لاستخراج السياق العالمي واكتشاف الكائنات ذات الأحجام المختلفة. يتضمن تنفيذه طريقة كشف تعتمد على الاستعلام وخسارة مطابقة ثنائية لإنتاج مربعات الإحاطة وتصنيفات الفئات في تمريرة واحدة.

Features

  • Real-Time Object Detection - Identifies and locates multiple objects within images or video streams using high precision and low latency processing.
  • NMS-Free Object Detectors - Implements an end-to-end detection transformer that removes the need for anchor generation and non-maximum suppression.
  • DETR Implementations - Implements the Detection Transformer architecture to achieve higher accuracy than traditional convolutional neural networks.
  • Computer Vision Inference - Provides a high-performance execution engine for real-time computer vision inference in robotics and surveillance applications.
  • Object Query Mechanisms - Utilizes a set of learnable object queries to predict bounding boxes and class labels in a single pass.
  • Vision Transformer Encoders - Employs a vision transformer encoder with self-attention mechanisms to extract global context from image features.
  • Real-Time Model Inference on Frames - Provides an optimized inference pipeline to maintain high frame rates during real-time object detection on video streams.
  • Computer Vision Models - Provides a high-performance object detection implementation optimized for the PaddlePaddle deep learning platform.
  • Multi-Scale Feature Pyramids - Merges high- and low-resolution image features using multi-scale pyramids to detect objects of various sizes.
  • Hungarian Matching Losses - Implements a bipartite matching loss strategy to assign unique predictions to ground truth objects without needing non-maximum suppression.
  • Hybrid Architectures - Combines multi-scale feature extraction with a lightweight head to optimize the balance between detection accuracy and inference speed.
  • PyTorch Computer Vision Pipelines - Implements a deep learning pipeline for image analysis and object localization using the PyTorch framework.
  • Real-Time Detection Optimizations - Optimizes detection tasks for live environments where both high speed and precision are critical.
  • Transformer - Listed in the “Transformer” section of the Ailia Models awesome list.

سجل النجوم

مخطط تاريخ النجوم لـ lyuwenyu/rt-detrمخطط تاريخ النجوم لـ lyuwenyu/rt-detr

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Start searching with AI

بدائل مفتوحة المصدر لـ RT DETR

مشاريع مفتوحة المصدر مشابهة، مرتبة حسب عدد الميزات المشتركة مع RT DETR.
  • thu-mig/yolov10الصورة الرمزية لـ THU-MIG

    THU-MIG/yolov10

    11,316عرض على GitHub↗

    YOLOv10 is a PyTorch computer vision library and real-time vision framework designed for locating and identifying multiple objects in images and video streams. It functions as an end-to-end object detector that optimizes for high-speed deployment and detection precision. The project is distinguished by an NMS-free detection architecture that predicts a single bounding box per object, eliminating the need for non-maximum suppression post-processing to reduce inference latency. It further optimizes for edge hardware through scalable weights and a quantization-friendly structure that facilitates

    Python
    عرض على GitHub↗11,316
  • amdegroot/ssd.pytorchالصورة الرمزية لـ amdegroot

    amdegroot/ssd.pytorch

    5,224عرض على GitHub↗

    This is a PyTorch object detection framework that implements the Single Shot MultiBox Detector for identifying and localizing multiple objects within images and video. The project provides a neural network architecture designed for single-shot object detection, which predicts bounding boxes and class labels in one pass. The implementation includes a real-time object detector capable of processing live video streams to track and label objects across sequential frames. It also features a complete computer vision training pipeline for preparing image datasets and training model weights. The fra

    Pythoncomputer-visiondeep-learningimage-recognition
    عرض على GitHub↗5,224
  • zylo117/yet-another-efficientdet-pytorchالصورة الرمزية لـ zylo117

    zylo117/Yet-Another-EfficientDet-Pytorch

    5,245عرض على GitHub↗

    This project is a PyTorch implementation of the EfficientDet architecture designed for real-time object detection. It provides a neural network and inference engine capable of identifying and locating multiple objects within images or video streams. The implementation includes pretrained computer vision models with optimized weights, enabling immediate inference and fine-tuning without the need for training from scratch. The project covers the full pipeline for computer vision model optimization, including custom object detection training and model weight optimization. It incorporates struct

    Jupyter Notebookbifpndetectionefficientdet
    عرض على GitHub↗5,245
  • fundamentalvision/deformable-detrالصورة الرمزية لـ fundamentalvision

    fundamentalvision/Deformable-DETR

    3,895عرض على GitHub↗

    Deformable-DETR is an object detection system for computer vision that uses a transformer-based encoder-decoder architecture. It identifies and locates objects within images by representing potential targets as a set of learnable queries. The project employs sampling-based attention to restrict attention to a small set of points around a reference, reducing computational complexity and speeding up convergence. It further utilizes multi-scale feature fusion to detect objects of varying sizes within a single frame. The system includes capabilities for training models across multiple GPU cluste

    Python
    عرض على GitHub↗3,895
عرض جميع البدائل الـ 30 لـ RT DETR→

الأسئلة الشائعة

ما هي وظيفة lyuwenyu/rt-detr؟

RT-DETR هو نموذج كشف كائنات في الوقت الفعلي يعتمد على معمارية محول الكشف (detection transformer). تم تنفيذه كنموذج رؤية حاسوبية لمنصتي التعلم العميق PyTorch وPaddlePaddle، ومصمم لتحديد وتحديد مواقع كائنات متعددة في الصور ومقاطع الفيديو.

ما هي الميزات الرئيسية لـ lyuwenyu/rt-detr؟

الميزات الرئيسية لـ lyuwenyu/rt-detr هي: Real-Time Object Detection, NMS-Free Object Detectors, DETR Implementations, Computer Vision Inference, Object Query Mechanisms, Vision Transformer Encoders, Real-Time Model Inference on Frames, Computer Vision Models.

ما هي البدائل مفتوحة المصدر لـ lyuwenyu/rt-detr؟

تشمل البدائل مفتوحة المصدر لـ lyuwenyu/rt-detr: thu-mig/yolov10 — YOLOv10 is a PyTorch computer vision library and real-time vision framework designed for locating and identifying… amdegroot/ssd.pytorch — This is a PyTorch object detection framework that implements the Single Shot MultiBox Detector for identifying and… zylo117/yet-another-efficientdet-pytorch — This project is a PyTorch implementation of the EfficientDet architecture designed for real-time object detection. It… fundamentalvision/deformable-detr — Deformable-DETR is an object detection system for computer vision that uses a transformer-based encoder-decoder… getstream/vision-agents. android/camera-samples — A collection of reference implementations and code samples for integrating Android camera hardware and software APIs.…