mmdetection VS deep_sort

Compare mmdetection vs deep_sort and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
mmdetection deep_sort
23 10
27,658 5,043
2.0% -
8.7 0.0
4 days ago 2 days ago
Python Python
Apache License 2.0 GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

mmdetection

Posts with mentions or reviews of mmdetection. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-12.
  • Semantic segementation
    2 projects | /r/computervision | 12 Apr 2023
    When I look for benchmarks I always start here https://paperswithcode.com/task/instance-segmentation/codeless it has the lists of datasets to measure models accross lots o papers. Many are very specific models with low support or community but it gives you a good idea of ​​the state of the art. It also lists repositories related to good community. https://github.com/open-mmlab/mmdetection seems very active and the one that is being used the most, you could use the models that it has integrated in its model zoo, within the same repository. It has the benchmarks to compare those same models and some of them are from 2022
  • How to Convert Model Mask into Polygon and save JSON?
    1 project | /r/deeplearning | 18 Jan 2023
    MODEL: https://github.com/open-mmlab/mmdetection
  • Object Detection Model for Custom Dataset Training?
    1 project | /r/learnmachinelearning | 11 Jan 2023
    Would it make sense to work with OpenMMLab (https://github.com/open-mmlab/mmdetection) or Pytorch-image-models (https://github.com/rwightman/pytorch-image-models#models) since they offer a variety of models?
  • [P] Image search with localization and open-vocabulary reranking.
    8 projects | /r/MachineLearning | 15 Dec 2022
    I wanted to have a few choices getting localization into image search (index and search time). I immediately thought of using a region proposal network (rpn) from mask-rcnn to create patches that can also be indexed and searched (and add the localisation). I figured it might be somewhat agnostic to classes. I did not want to use mmdetection or detectron2 due to their dependencies and just getting the rpn was not worth it. I was encouraged by the PyTorch native implementations of detection/segmentation models but ended up finding yolox the best.
  • MMDeploy: Deploy All the Algorithms of OpenMMLab
    22 projects | /r/u_Allent_pjlab | 21 Nov 2022
    MMDetection: OpenMMLab detection toolbox and benchmark.
  • Removing the bounding box generated by OnnxRuntime segmentation
    2 projects | /r/computervision | 4 Nov 2022
    I have a semantic segmentation model trained using the mmdetection repo. Then it is converted to the ONNX format using the mmdeploy repo.
  • Keras vs Tensorflow vs Pytorch for a Final year Project
    2 projects | /r/tensorflow | 10 Oct 2022
    E.g. If you consider it an object detection problem it is: detect and localise all the pedestrians in a frame, and classify them by their (intended) action. IMO the easiest way to do this would be with mmdetection, which is built on top of pytorch. Just label your dataset, build a config, and boom you have a model. Inference with that model in only a few lines of code, you won't really need to learn too much to get started.
  • DeepSort with PyTorch(support yolo series)
    13 projects | /r/u_No_Experience9104 | 20 Sep 2022
    MMDetection
  • [D] Pre-trained networks and batch normalization
    1 project | /r/MachineLearning | 15 Sep 2022
    For example, in mmdetection, they expose options in their config & implementation to freeze batch norm layers in backbones and in this config, norm_eval is set to True meaning to freeze tracking of batch norm stats, while the ResNet backbone is frozen up to the 1st stage. Example of their backbone implementation can be found here.
  • Config files in plain Python
    3 projects | /r/Python | 25 Aug 2022
    MMDetection uses config Python scripting. It's easier to define nn.Module objects other than writing class name in a json config file

deep_sort

Posts with mentions or reviews of deep_sort. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-16.
  • Similari 0.26.2: MOT framework with Python bindings
    3 projects | /r/computervision | 16 May 2023
    Similari is a Rust/Python framework aimed at building sophisticated tracking systems. With Similari, you can develop highly efficient parallelized SORT, DeepSORT, and other sophisticated multiple-object tracking engines.
  • How to integrate DeepSORT with YOLOv8
    2 projects | /r/computervision | 25 Mar 2023
    I'm doing a Python personal project where I'm trying to use YOLOv8 and DeepSORT to detect vehicles from a car's dash cam footage. I succeeded in using YOLOv8 to output the correct bounding boxes by processing each camera frame. However, I tried to add on DeepSORT code, but it made the detection accuracy significantly worse. I'm pretty sure I need to train my own "feature extractor" for DeepSORT to create a new .pb file. I got this information from the deep_sort GitHub link: https://github.com/nwojke/deep_sort. I tried to find resources to do this but they are pretty scarce. Has anyone had experience with this problem?
  • Need to download resources for DeepSORT from pan.baidu.com
    3 projects | /r/computervision | 6 Dec 2022
    The feature model well that looks like it is at that domain you mentioned but why not instead of using this repo use the original authors repo
  • DeepSort with PyTorch(support yolo series)
    13 projects | /r/u_No_Experience9104 | 20 Sep 2022
    nwojke/deep_sort
  • Kalman filter in Rust runs 120+ times faster than NumPy, SciKit implementation
    4 projects | /r/rust | 25 Jul 2022
    I was implementing the Kalman filter for bounding boxes during the last two days. As an inspiration source, I looked at the Python3 Kalman filter implementation that is used in the DeepSORT algorithm and uses NumPy and SciKit under the hood, so it's pretty efficient because all the operations are run inside FFI.
  • [P] The easiest way to process and tag video data
    1 project | /r/MachineLearning | 2 May 2022
    There's tons of work out there when it comes to object tracking such as DeepSort. We've worked to build simpler, more efficient solutions in-house though. Then past that, it's a matter of treating everything in the video as an object (including the whole frame), tracking it, and saving it in a no-SQL DB such that it's easy to query in this way.
  • Building an API + query language for rich data like images and video
    2 projects | /r/datascience | 21 Apr 2022
    Right now, the way we're thinking about it is to turn videos into something that works with the structure of a database like MongoDB. Everything in an image or a video is an object (even the frame itself is an object with a large bounding box), and each of these objects has some attributes and can be tracked over time with some form of object tracking. Given that the objects are tracked, they can each basically be returned as a time-series of each of the attributes associated with that object.
  • Could someone suggest a good article that explains the implementation of deep sort algorithm ?
    1 project | /r/deeplearning | 21 Jan 2022
    Deep Sort
  • How do I train the DeepSORT tracker for a custom class?
    2 projects | /r/computervision | 13 Apr 2021
    I was wondering if I could use the same annotated data(in YOLO format) for the training of the tracker as well. I took a look at the original repo for DeepSORT, and it does mention the training using cosine metric learning, but I could not seem to understand how to replicate that for my own dataset(they show us how to do it for the MARS and Market1501 datasets).
  • Is it possible to track objects on the go?
    2 projects | /r/learnmachinelearning | 11 Mar 2021
    DeepSORT is one of the best trackers https://github.com/nwojke/deep_sortIt requires an object detector tho, like YOLO https://pjreddie.com/darknet/yolo/

What are some alternatives?

When comparing mmdetection and deep_sort you can also consider the following projects:

detectron2 - Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.

sort - Simple, online, and realtime tracking of multiple objects in a video sequence.

yolov5 - YOLOv5 πŸš€ in PyTorch > ONNX > CoreML > TFLite

yolov4-deepsort - Object tracking implemented with YOLOv4, DeepSort, and TensorFlow.

pytorch-lightning - Build high-performance AI models with PyTorch Lightning (organized PyTorch). Deploy models with Lightning Apps (organized Python to build end-to-end ML systems). [Moved to: https://github.com/Lightning-AI/lightning]

Similari - A framework for building high-performance real-time multiple object trackers

PaddleDetection - Object Detection toolkit based on PaddlePaddle. It supports object detection, instance segmentation, multiple object tracking and real-time multi-person keypoint detection.

yolo_series_deepsort_pytorch - Deepsort with yolo series. This project support the existing yolo detection model algorithm (YOLOV8, YOLOV7, YOLOV6, YOLOV5, YOLOV4Scaled, YOLOV4, YOLOv3', PPYOLOE, YOLOR, YOLOX ).

mmdetection3d - OpenMMLab's next-generation platform for general 3D object detection.

sahi - Framework agnostic sliced/tiled inference + interactive ui + error analysis plots

yolor - implementation of paper - You Only Learn One Representation: Unified Network for Multiple Tasks (https://arxiv.org/abs/2105.04206)