An open API service indexing awesome lists of open source software.

https://github.com/kr1shnasomani/traffisense

A computer vision toolkit for traffic analysis with vehicle detection, speed estimation, segmentation, and number plate recognition.
https://github.com/kr1shnasomani/traffisense

computer-vision deep-learning neural-network numpy opencv pypi pytorch

Last synced: 10 months ago
JSON representation

A computer vision toolkit for traffic analysis with vehicle detection, speed estimation, segmentation, and number plate recognition.

Awesome Lists containing this project

README

          

TraffiSense




## Project Index:
| Name | Descritpion |
|------|-------------|
| [PlateScan](https://github.com/kr1shnasomani/TraffiSense/tree/main/PlateScan) | The project detects and extracts text from vehicle number plates using OpenCV for image processing, EasyOCR for text recognition, and imutils for contour detection. It identifies the number plate region, crops it, extracts the text, and saves the result without displaying the images. |
| [SpeedVision](https://github.com/kr1shnasomani/TraffiSense/tree/main/SpeedVision) | The code implements vehicle detection, tracking, and speed estimation using YOLOv8 for object detection, ByteTrack for tracking and OpenCV for video processing, annotating a video with bounding boxes, labels and speed calculations. |
| [StreetScanner](https://github.com/kr1shnasomani/TraffiSense/tree/main/StreetScanner) | The system leverages DeepLabv3 ResNet-50 to detect and segment pedestrians and vehicles, with color-coded masks for easy visualization. This solution is designed for applications in traffic monitoring, pedestrian safety and smart city solutions. Built using PyTorch, Semantic Segmentation and Computer Vision techniques. |

## Respository Structure:
```
TraffiSense/
├── PlateScan/
│ ├── code/
│ │ └── main.py
│ ├── dataset/
│ │ ├── image1.jpg
│ │ └── image2.jpg
│ ├── result/
│ │ ├── number-plate-1.jpg
│ │ └── number-plate-2.jpg
│ └── README.md
├── SpeedVision/
│ ├── code/
│ │ └── main.py
│ └── README.md
├── StreetScanner/
│ ├── code/
| │ ├── both.py
│ │ ├── pedestrian.py
│ │ └── vehicle.py
│ ├── dataset/
│ │ └── image.jpeg
│ ├── result/
| │ ├── both-resultant-image.png
│ │ ├── pedestrian-resultant-image.png
│ │ └── vehicle-resultant-image.png
│ └── README.md
└── README.md
```