All Projects → SmitSheth → People Counter

SmitSheth / People Counter

This project counts number of people coming in and going out of structures such as building, stores,etc. based on tripline crossing.

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to People Counter

Yolov3 pytorch
Full implementation of YOLOv3 in PyTorch
Stars: ✭ 570 (+2750%)
Mutual labels:  yolo
Getting Things Done With Pytorch
Jupyter Notebook tutorials on solving real-world problems with Machine Learning & Deep Learning using PyTorch. Topics: Face detection with Detectron 2, Time Series anomaly detection with LSTM Autoencoders, Object Detection with YOLO v5, Build your first Neural Network, Time Series forecasting for Coronavirus daily cases, Sentiment Analysis with BERT.
Stars: ✭ 738 (+3590%)
Mutual labels:  yolo
Pytorch Yolo2
Convert https://pjreddie.com/darknet/yolo/ into pytorch
Stars: ✭ 941 (+4605%)
Mutual labels:  yolo
Ai Basketball Analysis
🏀🤖🏀 AI web app and API to analyze basketball shots and shooting pose.
Stars: ✭ 582 (+2810%)
Mutual labels:  yolo
Openlabeling
Label images and video for Computer Vision applications
Stars: ✭ 706 (+3430%)
Mutual labels:  yolo
Tensorflow Yolo
tensorflow implementation of 'YOLO : Real-Time Object Detection'(train and test)
Stars: ✭ 791 (+3855%)
Mutual labels:  yolo
Stronger Yolo
🔥Improve yolo with latest paper
Stars: ✭ 539 (+2595%)
Mutual labels:  yolo
Pytorch Caffe Darknet Convert
convert between pytorch, caffe prototxt/weights and darknet cfg/weights
Stars: ✭ 867 (+4235%)
Mutual labels:  yolo
Cv Papers
计算机视觉相关论文整理、记录、分享; 包括图像分类、目标检测、视觉跟踪/目标跟踪、人脸识别/人脸验证、OCR/场景文本检测及识别等领域。欢迎加星,欢迎指正错误,同时也期待能够共同参与!!! 持续更新中... ...
Stars: ✭ 738 (+3590%)
Mutual labels:  yolo
Dmsmsgrcg
A photo OCR project aims to output DMS messages contained in sign structure images.
Stars: ✭ 18 (-10%)
Mutual labels:  yolo
Android Yolo
Real-time object detection on Android using the YOLO network with TensorFlow
Stars: ✭ 604 (+2920%)
Mutual labels:  yolo
Yolo Tf2
yolo(all versions) implementation in keras and tensorflow 2.4
Stars: ✭ 695 (+3375%)
Mutual labels:  yolo
Mobilenet Yolo
A caffe implementation of MobileNet-YOLO detection network
Stars: ✭ 825 (+4025%)
Mutual labels:  yolo
Ssds.pytorch
Repository for Single Shot MultiBox Detector and its variants, implemented with pytorch, python3.
Stars: ✭ 570 (+2750%)
Mutual labels:  yolo
Tensorflow Yolo V3
Implementation of YOLO v3 object detector in Tensorflow (TF-Slim)
Stars: ✭ 862 (+4210%)
Mutual labels:  yolo
Keras Yolov3 Mobilenet
I transfer the backend of yolov3 into Mobilenetv1,VGG16,ResNet101 and ResNeXt101
Stars: ✭ 552 (+2660%)
Mutual labels:  yolo
Yolo tensorflow
Tensorflow implementation of YOLO, including training and test phase.
Stars: ✭ 772 (+3760%)
Mutual labels:  yolo
Yolov3
YOLOv3 in PyTorch > ONNX > CoreML > TFLite
Stars: ✭ 8,159 (+40695%)
Mutual labels:  yolo
Yolo Coreml Mpsnngraph
Tiny YOLO for iOS implemented using CoreML but also using the new MPS graph API.
Stars: ✭ 866 (+4230%)
Mutual labels:  yolo
Yolo annotation tool
Annotation tool for YOLO in opencv
Stars: ✭ 17 (-15%)
Mutual labels:  yolo

People-Counter

This project counts people coming in and going out of structures such as building, stores,etc. based on tripline crossing. The project uses yolo as object detetcion model.

Prerequisites

  • Ubuntu 14.04 and higher
  • OpenCV

Demo

Usage

$ git clone https://github.com/SmitSheth/People-Counter.git
$ cd darknet
# For using yolov2 download its weight
$ wget https://pjreddie.com/media/files/yolo.weights
# For using yolov3 download its weight
$ wget https://pjreddie.com/media/files/yolov3.weights
$ make
# Use yolov2
$ ./darknet detector demo cfg/coco.data cfg/yolov2.cfg yolo.weights <input-video-path> -prefix 0
# Use yolov3
$ ./darknet detector demo cfg/coco.data cfg/yolov3.cfg yolov3.weights <input-video-path> -prefix 0

Citation

@misc{darknet13,
  author =   {Joseph Redmon},
  title =    {Darknet: Open Source Neural Networks in C},
  howpublished = {\url{http://pjreddie.com/darknet/}},
  year = {2013--2016}
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].