jonychoi /
Computer-Vision-Paper-Reviews
Computer Vision Paper Reviews with Key Summary of paper, End to End Code Practice and Jupyter Notebook converted papers
44/100 healthLoading repository data…
Siddharth-k7 / repository
Computer vision practice combining YOLOv11 object detection notebooks with OpenCV object tracking scripts.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
One-line version: YOLOv11 object detection notebooks plus OpenCV tracking demos in one clean computer vision repo.
This repo combines two things that usually work together:
It is useful as a learning and showcase repo because it shows both sides of the workflow: first detect the object, then track where it goes. A camera sees chaos; this repo tries to give it a job description.
Clone the repo:
git clone https://github.com/Siddharth-k7/Object-detection-and-tracking.git
cd Object-detection-and-tracking
Install the basics:
pip install -r tracking/opencv_trackers/requirements.txt
pip install ultralytics jupyter
Open the notebooks:
jupyter notebook
Run a tracker demo:
python tracking/opencv_trackers/kcf.py
Some trackers need opencv-contrib-python, which is already listed in the tracking requirements. If OpenCV complains anyway, it is doing its traditional warm-up routine.
.
├── assets/ # banner, GIF, and notebook preview images
├── docs/ # extra project notes
├── notebooks/object_detection/ # YOLOv11 detection notebooks
├── tests/ # lightweight repository tests
├── tracking/opencv_trackers/ # OpenCV tracker demos
├── .github/workflows/ci.yml # CI for compile checks and tests
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE.md
└── README.md
| Topic | File |
|---|---|
| Getting started with YOLOv11 object detection | notebooks/object_detection/Getting_Started_with_Yolov11__Object_Detection.ipynb |
| Custom dataset training with YOLOv11 | notebooks/object_detection/Custom_Dataset_Training_with_YOLOv11.ipynb |
| BOOSTING tracker | tracking/opencv_trackers/boosting.py |
| CSRT tracker | tracking/opencv_trackers/csrt.py |
Selected from shared topics, language and repository description—not editorial ratings.
jonychoi /
Computer Vision Paper Reviews with Key Summary of paper, End to End Code Practice and Jupyter Notebook converted papers
44/100 healthShyamSundhar1411 /
Collection of Jupyter notebooks showcasing machine learning practices, including computer vision, NLP, classical ML algorithms, and paper replications.
57/100 health| GOTURN tracker script |
tracking/opencv_trackers/goturn.py |
| KCF tracker | tracking/opencv_trackers/kcf.py |
| MEDIANFLOW tracker | tracking/opencv_trackers/medianflow.py |
| MIL tracker | tracking/opencv_trackers/mil.py |
| MOSSE tracker | tracking/opencv_trackers/mosse.py |
| TLD tracker | tracking/opencv_trackers/tld.py |
v0.1.0; changes are tracked in CHANGELOG.md.MIT License. See LICENSE.md.
HachemiIbrahim /
A deep learning learning repository , built for learning and experimenting with neural networks, computer vision . Contains Jupyter notebooks, model implementations, and practice projects to understand the fundamentals of deep learning using PyTorch .
36/100 healthmakarovartyom /
Jupyter notebooks with OpenCV recepies from Udacity Computer vision nanodegree.
54/100 healthThis repository contains all of the image processing and computer vision stuff that really useful in our application. I create all of this jupyter notebook so I could also learn the algorithm.
42/100 healthHassan-Lodhi /
No description provided.
24/100 health