GitHub
github.com › topics › real-time-object-detection
real-time-object-detection · GitHub Topics · GitHub
The idea is to loop over each frame of the video stream, detect objects, and bound each detection in a box. opencv computer-vision deep-learning webcam object-detection opencv-python mobilenet-ssd ...
GitHub
github.com › Surya-Murali › Real-Time-Object-Detection-With-OpenCV
GitHub - Surya-Murali/Real-Time-Object-Detection-With-OpenCV: This project aims to do real-time object detection through a laptop cam using OpenCV. The idea is to loop over each frame of the video stream, detect objects, and bound each detection in a box. · GitHub
Step 4: Make sure you have your ... and real-time object detection, run the following command: python real_time_object_detection.py --prototxt MobileNetSSD_deploy.prototxt.txt --model MobileNetSSD_deploy.caffemode...
Starred by 161 users
Forked by 83 users
Languages Python 94.8% | Shell 5.2%
Real-time object detection
First impression is to look at YOLOv7 and Darknet. Do this in C/C++ for the greater control over memory, multi-threading, and multi-processing. For even greater speed, look into optimizing the template match with SIMD, and your hardware expense drastically reduces. Something like this for optimized video decompression: https://github.com/bsenftner/ffvideo (I wrote that, it's something like 18 ms per frame on an i9 3.4 GHz system) (Note that OpenCV's video decompression is also ffmpeg, but is not optimized, it buffers, and does not handle when a camera drops, it just hangs.) Might be doable with a single i9 workstation, no GPU required, if exploiting SIMD. Testing of one's hardware throughput would be required, of course. Not sure how cheap a camera you want to go, and FWIW it looks like more than one camera would be required. Considering the environment such a high speed sorter operates is controlled, lower expense cameras ought to work out fine, because the illumination the cameras operate is controlled. It looks like more than one camera might be required because the view of the tomatoes appears blocked by the portion of the machine that does the rejecting. That could be fixed by having multiple cameras on that same mechanism that does the rejecting, placing an additional camera where the perspective distortion of tomatoes on the edge of the frame makes it difficult to identify their 3-space position. Yeah, as long as those defects are well defined and you've got training samples of sufficient volume depicting those defects. The author of Darknet is a Redditor; I see his comments on CV posts every so often. More on reddit.com
Object Detection based on a live camera from drone
I worked on a drone for a while that carried around NVIDIA Jetson computer. That would give you the horsepower for on-board object detection (as long as your model is light enough). The Jetson also ran ROS, and I controlled the drone with Mavros (the drone itself was running Ardupilot). More on reddit.com
Videos
08:50
Real Time Object Detection with YOLOv9 and Webcam - YouTube
01:11:55
Multi-Object Tracking Made Easy | Trackers CLI + RF-DETR | Live ...
04:26
Building a Real-Time Object Detection App using YOLO in Python ...
Realtime Object Detection Using OpenCV Python ON CPU ...
05:25:42
Tensorflow Object Detection in 5 Hours with Python | Full Course ...
YouTube
youtube.com › watch
Live Object Detection in Python - YouTube
Today we learn how to implement live object detection in Python, using machine learning and OpenCV.Resources: https://github.com/chuanqi305/MobileNet-SSD◾◾◾◾...
Published August 8, 2021
Towards Data Science
towardsdatascience.com › home › latest › implementing real-time object detection system using pytorch and opencv
Implementing Real-time Object Detection System using PyTorch and OpenCV | Towards Data Science
January 28, 2025 - There are many great object detection models out there each with its pros and cons. To keep things simple we will go with YoloV5 as it provides us with fast inferences which are critical for our real-time application. You can also look into other models like FasterRCNN. As per Yolov5 paper, it is the fastest model in the market right now. (source) We can directly load the model from the PyTorch hub, the first time you run the code it might take few minutes as it will download the model from the internet, but next time onwards it will be loaded directly from the disk.
GitHub
github.com › Keyvanhardani › Real-Time-Webcam-Object-Detection
GitHub - Keyvanhardani/Real-Time-Webcam-Object-Detection: This Python script uses OpenCV and SSD MobileNet for real-time object detection from webcam feed. It's an accessible intro to computer vision and machine learning concepts. · GitHub
... Clone this repository to your local machine. Install the required packages. Place your pretrained model and class names file in the same directory as the script. Run the script: python object_detection.py
Starred by 4 users
Forked by 4 users
Languages Python
GeeksforGeeks
geeksforgeeks.org › python › detect-an-object-with-opencv-python
Detect an object with OpenCV-Python - GeeksforGeeks
July 12, 2025 - Haar Cascades are particularly well-suited for real-time object detection making them a popular choice for detecting faces, vehicles and stop signs. Here is the step by step implementation of object detection using OpenCV. For this you can download the Haar Cascade XML file for object detection and the sample image from here. Place them in the same directory as your Python script.
Madhusai-official-09
madhusai-official-09.github.io › Real-Time-Object-Detection-Using-Python-Eduexpose
Real-Time Object Detection with Python
# Install PyTorch (CPU version - suitable for most laptops) pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu # Install OpenCV and other utilities pip install opencv-python numpy matplotlib seaborn # Install Ultralytics (includes YOLOv11 support) pip install ultralytics · Note: If you have an NVIDIA GPU, visit PyTorch's website for the CUDA-enabled installation command for faster inference. 3.1 In VS Code, create a new file named yolo_realtime_webcam.py and paste the following code for Real-Time Object Detection Using Webcam📷:
GitHub
github.com › datitran › object_detector_app
GitHub - datitran/object_detector_app: Real-Time Object Recognition App with Tensorflow and OpenCV
A real-time object recognition application using Google's TensorFlow Object Detection API and OpenCV. ... python object_detection_app.py / python object_detection_multithreading.py Optional arguments (default value):
Starred by 1.3K users
Forked by 741 users
Languages Python 99.2% | Jupyter Notebook 0.8% | Python 99.2% | Jupyter Notebook 0.8%
GitHub
github.com › jalajthanaki › Real_time_object_detection
GitHub - jalajthanaki/Real_time_object_detection: This repository contains the code for real-time object detection. I'm using video stream coming from webcam. MobileNet-SSD and OpenCv has been used as base-line approach. TensorFlow object detection API has been used in revised approach. · GitHub
April 13, 2020 - $ python real_time_object_detection.py --prototxt MobileNetSSD_deploy.prototxt.txt --model MobileNetSSD_deploy.caffemodel · The credit of this code goes to Dat Tran and the blogs provided on Pyimagesearch site.
Starred by 10 users
Forked by 4 users
Languages Python 99.2% | Jupyter Notebook 0.8%
GeeksforGeeks
geeksforgeeks.org › computer vision › real-time-object-detection-using-tensorflow
Real-Time Object Detection Using TensorFlow - GeeksforGeeks
July 23, 2025 - The first command copies the file setup.py from the directory "object_detection/packages/tf2" to the current directory. The second command installs the TensorFlow Object Detection API using pip. This will make the API available. Create a new python script in directory "models/research/object_detection", import the necessary libraries and modules in it: