YOLOv3-Object-Detection-with-OpenCV icon indicating copy to clipboard operation
YOLOv3-Object-Detection-with-OpenCV copied to clipboard

This project implements a real-time image and video object detection classifier using pretrained yolov3 models.

Results 17 YOLOv3-Object-Detection-with-OpenCV issues
Sort by recently updated
recently updated
newest added

I try the " python yolo.py --image-path=" part ,it returns a error cv2.error: OpenCV(4.1.0) C:\projects\opencv-python\opencv\modules\dnn\src\darknet\darknet_importer.cpp:214: error: (-212:Parsing error) Failed to parse NetParameter file: ./yolov3-coco/yolov3.weights in function 'cv::dnn::dnn4_v20190122::readNetFromDarknet' im a noob,hope...

when i run this command `Python yolo.py --video-path=` nothing happen

Hi, i am using your codes on sublime text on Windows. I am getting this error. I m new to python so I would really appreciate if you could guide...

I have created a user interface to upload images, videos and real time directly from the system rather than using the terminal. This makes users job easy and saves times....

I was trying to run "python3 yolo.py --video-path='/media/lamp-moving.mpg". (I am using 4.1.0 version of cv2) And then the following error comes up: Traceback (most recent call last): File "yolo.py", line...

import cv2 import matplotlib.pyplot as plt import cvlib as cv from cvlib.object_detection import draw_bbox img = cv2.imread('dog-cycle-car.png') bbox, label, conf = cv.detect_common_objects(img) output_image = draw_bbox(img, bbox, label, conf) plt.imshow(output_image) plt.show()...

Have NO CLUE why this isnt working cuz it worked with THE SAME method at mac... Plz gimme any advice to solve my ``` problem.. ``` `import cv2 import numpy...

Hi, Is it possible to retrain or fine-tune the YOLO v3 on our own dataset?

Traceback (most recent call last): File "C:\Users\KESHAV KUMAR\Desktop\minor_project\YOLOv3-Object-Detection-with-OpenCV\yolo.py", line 104, in height, width = img.shape[:2] AttributeError: 'NoneType' object has no attribute 'shape' During handling of the above exception, another exception...

I was trying to run "!python3 yolo.py --image-path='test.jpg'". And then the following error comes up: Traceback (most recent call last): File "yolo.py", line 110, in img, _, _, _, _...